klyn.math.NDArray.operator@
method
public static operator@(first as NDArray<T>, second as NDArray<T>) as NDArray<T>:
Description
Matrix multiplication (2D x 2D).
a = NDArray<Int>.full([2, 3], 1)
b = NDArray<Int>.full([3, 4], 2)
c = a @ b