-
I just wonder, looking at the documentation, |
Beta Was this translation helpful? Give feedback.
Answered by
josdejong
Mar 9, 2023
Replies: 1 comment
-
In general, the idea is: Array in -> Array out, Matrix in -> Matrix out. math.matrixFromFunction([3,3], i => i[0] - i[1]) // Array
math.matrixFromFunction(math.matrix([3,3]), i => i[0] - i[1]) // Matrix |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fweth
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In general, the idea is: Array in -> Array out, Matrix in -> Matrix out.