How can i remove colormap or shading?

7 visualizzazioni (ultimi 30 giorni)
재현 김
재현 김 il 8 Mar 2021
Commentato: 재현 김 il 18 Mar 2021
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 Commento
재현 김
재현 김 il 8 Mar 2021
That code act like this. The upper one was draw first and the lowest one is last one. How can i remove former ones?

Accedi per commentare.

Risposta accettata

darova
darova il 8 Mar 2021
try cla before pcolor

Più risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by