Plotting a 6 Dimensional Array
조회 수: 8 (최근 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!