Info
此问题已关闭。 请重新打开它进行编辑或回答。
how to view the matrix in 2 dimension of the following values
1 次查看(过去 30 天)
显示 更早的评论
how to view the matrix in 2 dimension of the following values
<5x486x586 double>
2 个评论
Walter Roberson
2013-1-10
That is a 3-dimensional matrix. You could view slices of it in 2D.
Are you wanting to look at the values, or are you wanting to draw a graph?
回答(1 个)
Andrei Bobrov
2013-1-10
编辑:Andrei Bobrov
2013-1-10
d = randi(1000,5,486,586); % your array
out = reshape(d,size(d,1),[]); %the horizontal orientation
or
d1 = num2cell(d,[1 2]);
out = cat(1,d1{:}); % the vertical orientation
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!