- Use imagesc, hold, and contour;
- Use the contourf (fills the contours) function only on (x,y,z).
Contour lines on a imagesc plot
31 次查看(过去 30 天)
显示 更早的评论
Hi,
I am plotting a imagesc with (x, y, Z). On top of that I would like to plot the contour lines with constant values of z. Could you please help me with it? Thanks a lot in advance.
0 个评论
回答(1 个)
Star Strider
2017-1-18
There is not enough information in your Question to provide a definite Answer.
Two possibilities:
2 个评论
Star Strider
2017-1-18
You can specify the contour line locations in contour and contourf:
contour(x, y, z, [0.1 0.2 0.3 0.4])
Extend the vector (or use the colon operator or linspace to create an equally-spaced vector) to as many contour lines as you want,at whatever level you want. Contour lines that are out-of-range will of course not be plotted, but they will not throw an error.
See the contour documentation for details.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Contour Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!