public native pow(other as NDArray<T>) as NDArray<Double>
Raises each element to the matching power array.
The result is materialized as NDArray<Double>.
a = NDArray<Int>.fromList([2, 3]) b = NDArray<Int>.fromList([3, 2]) print(a.pow(b)) # [8.0, 9.0]