How can I make the contour plot of an "sfit" object resemble the plot generated by the "contour" command in MATLAB R2013b?
Show older comments
I am making a surface fit using the "fit" function and using it to generate a contour plot with the following code:
load franke
sf = fit([x y], z, 'poly23');
plot(sf, 'Style', 'Contour');
This generates the following plot:

However, the plot that is generated looks different from what I would get by using the "contour" function. How can I make it look the same?
Accepted Answer
More Answers (0)
Categories
Find more on Contour 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!
