How can i remove colormap or shading?
Show older comments
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))]);
Accepted Answer
More Answers (0)
Categories
Find more on Orange 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!