Improving resolution for a surf plot in MATLAB
16 views (last 30 days)
Show older comments
I am using the SURF command to represent some data. I want to plot the surface of a disc in a 3d chart.
The only problem is that my data is in a 9x9 format, this naturally results in a square looking surface. I’d like for the resulting surface to look like a circle.
Is there way to “cut off” the edges somehow?
1 Comment
Todd Flanagan
on 21 Jan 2011
Hi, I moved your answer to a comment on Doug's answer. That's a good place for that sort of back and forth.
Answers (2)
Doug Hull
on 20 Jan 2011
NaN does not get shown in a surf plot.
a = magic(10)
a([1,2,11,90,99,100]) = NaN
surf(a)
view(2)
See Also
Categories
Find more on Surface and Mesh 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!