how do i make this contour plot more presentable

1 次查看(过去 30 天)
Hi , How can i make this contourf plot more presentable ?

采纳的回答

Bjorn Gustavsson
Bjorn Gustavsson 2020-9-23
The crossing contours confuse/worry me, are you adding additional contours from another data-set ontop of your contourf-plot?
Perhaps you can get a cleaner presentation by combining pcolor and contour, something like this:
pcolor(x,y,data),shading flat
hold on
contour(x,y,data,12,'k')
contour(x2,y2,data2,10,'m') % If you want additional contour-plots ontop of the first
HTH

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Contour Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by