Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to view the matrix in 2 dimension of the following values

1 回表示 (過去 30 日間)
ajith
ajith 2013 年 1 月 10 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
how to view the matrix in 2 dimension of the following values
<5x486x586 double>
  2 件のコメント
Walter Roberson
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?
ajith
ajith 2013 年 1 月 10 日
I WANT TO KNOW THE VALUES

回答 (1 件)

Andrei Bobrov
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

この質問は閉じられています。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by