How to omit zero value line in contourm figure
3 views (last 30 days)
Show older comments
Hi I want to have a contour plot without zero value line,
I have been search internet and matlab Q&A for a long time,
but can't find answer , how can I do this ?
P.S. I know contour plot can give the line interval you want to avoid zero line,but I have several figures and each one has different scale, so is there any method to omit zero line after you draw the figure ?
thank you
this is my figure link
2 Comments
Accepted Answer
Walter Roberson
on 26 May 2013
Yes, it is possible to remove the 0 contour after drawing... and what if there is no contour at exactly 0 because your "int" steps ended up with the closest division being at (say) -1/10? Or -5000 depending on the scale of the data.
You are better of figuring out exactly where you want the contours, and providing that list of levels as the argument after "projn" in your call. That way you could figure out how big you want your steps to be, and you could round() the levels to "nice numbers" using what-ever algorithm you liked, and you could decide whether you just want the 0 deleted (leaving a double-width near 0) or if you want to instead center the equal-sized steps so that 0 is in the middle between two steps.
0 Comments
More Answers (0)
See Also
Categories
Find more on Contour 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!