jit.submatrix

Hans Mittendorf's icon

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?

Luke Woodbury's icon

Use the offset message, so if you want the 3rd column

jit.submatrix @dim 1 12 @offset 3 0

Hans Mittendorf's icon

Thanks. It is @offset 2 0 for the third column. I think it counts from 0. Is that so?

Luke Woodbury's icon

Quite right, just testing ;)