Plotting a 6 Dimensional Array
5 ビュー (過去 30 日間)
古いコメントを表示
I have a 6 dimensional array with each dimension have 17 elements. Now I want to plot this array but don't know how. Can anyone please suggest a method to plot this array
3 件のコメント
採用された回答
Zoltán Csáti
2015 年 1 月 10 日
Plot like a multivariate function: by its level sets.
5 件のコメント
Zoltán Csáti
2015 年 1 月 14 日
It is quite ambiguous for me to deal with arrays of more than 3 dimensions. I suggest you to use a cell array instead, in which every cell would contain a matrix representing a wind turbine.
arich82
2015 年 1 月 14 日
Try using the squeeze command:
mesh(x, y, squeeze(m(1,1,1,1,:,:)));
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!