How to plot the 4th dimension of an array?
1 view (last 30 days)
Show older comments
srinivasarao tanniru
on 4 Dec 2013
Commented: srinivasarao tanniru
on 4 Dec 2013
Hi All,
I retrieved a matrix that stores a variable called temp. The matrix is 4D. If I want to retrieve only the 4th column and plot it how can i do that?
0 Comments
Accepted Answer
Walter Roberson
on 4 Dec 2013
Edited: Walter Roberson
on 4 Dec 2013
threeD_array = permute( YourMatrix(:,4,:,:), [1 3 4 2]); %column 4
But then you have the problem of how to plot a 3D array, as doing so requires a 4D plot -- X, Y, Z, and value.
More Answers (1)
Sabarinathan Vadivelu
on 4 Dec 2013
Edited: Sabarinathan Vadivelu
on 4 Dec 2013
Extract the 4th dimension first.
fourthDimMatrix = allMatrix(:,:,4)
Then try plot function
3 Comments
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!