How can i remove colormap or shading?

7 次查看(过去 30 天)
xlin2 = linspace(min(vec_xypro(:,1)),max(vec_xypro(:,1)),200);
ylin2 = linspace(min(vec_xypro(:,2)),max(vec_xypro(:,2)),200);
[X,Y]=meshgrid(xlin2,ylin2);
f=scatteredInterpolant(vec_xypro(:,1),vec_xypro(:,2),vec_xypro(:,3));
Z=f(X,Y);
pcolor(X,Y,Z)
colormap('jet')
shading interp
colorbar
caxis([min(vec_xypro(:,3)),max(vec_xypro(:,3))]);
  1 个评论
재현 김
재현 김 2021-3-8
That code act like this. The upper one was draw first and the lowest one is last one. How can i remove former ones?

请先登录,再进行评论。

采纳的回答

darova
darova 2021-3-8
try cla before pcolor

更多回答(0 个)

类别

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

产品

Community Treasure Hunt

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

Start Hunting!

Translated by