how can I extract 2D matrices for xy, xz, yz planes from a 3D matrix and use the pcolor function?
6 views (last 30 days)
Show older comments
I have a 3D matrix of a specific variable extracted from a netCDF file. I extract matrices for each space plane,but when I used pcolor function for each 2D matrices, it gave me error.
0 Comments
Accepted Answer
More Answers (1)
Image Analyst
on 20 Oct 2021
Try imshow() instead of pcolor. pcolor() doesn't even show you the last row or column so that's why I don't like pcolor().
imshow(variable_xy, []);
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!