matlab - Create new 3D matrix from current 3 2D matrices -
i have 3 2d matrices, each of them represents values in dimension (x,y , z) , each of size 640x480. want put them in new matrix of size 307200x3 matrix have 307200 rows , each rows carries x,y , z values e.g
x y z 1 3 4 2 1 3 3 1 1 . . . 307200 rows
and on. can advise me how can this?
are looking this?
a = [x(:) y(:) z(:)];
Comments
Post a Comment