X Y Z coordinates matrix
18 次查看(过去 30 天)
显示 更早的评论
Hi!
I have 3 matrix, one for coordinate x, other for y and other for z. Each one of 2180x10.
I want to have only 1 matrix, where each element of the matriz will be a (x,y,z) point. How can i do that?
0 个评论
采纳的回答
Sky Sartorius
2017-10-17
You can use the cat command to 'stack' your three 2d matrices into a single 3d matrix:
M = cat(3,x,y,z);
This will give you a 2180x10x3 matrix, and you can access a single (x,y,z) point using M(m,n,:) (or if you prefer the result be a column vector, squeeze(M(m,n,:))).
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!