surf(Z) Z= 11x9 double produces a 10x8 surface
Show older comments
I have a matrix of data 11x9 I wish to show as a surface. However
surf(Z)
surf(m,n,Z)
produce surfaces 10x8. Can anyone suggest how I can get all the results onto a surface? Thanks
1 Comment
Accepted Answer
More Answers (1)
The full matrix is shown by surf. The numbers define the outer points of each patch: consider
surf([1 2; 3 4])
that draws a single patch based on four points.
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!