jit.submatrix
I wanted to use jit.submatrix to extract a row out of a matrix. When I look closer to the object, it seems that it only extracts the first row or column. What can I do or use, if I want to extract different columns?
Let's say I have a matrix of 16 12 and I want the 6 4 extracted. How do I do that?
Use the offset message, so if you want the 3rd column
jit.submatrix @dim 1 12 @offset 3 0
Thanks. It is @offset 2 0 for the third column. I think it counts from 0. Is that so?
Quite right, just testing ;)