klyn.math.NDArray.operator**
method
public static operator**(first as NDArray<T>, second as NDArray<T>) as NDArray<T>:
Description
Raises first NDArray to second NDArray element-wise.
a = NDArray<Int>.fromList([2, 3])
b = NDArray<Int>.fromList([3, 2])
c = a ** b