How to remove the grid from plot

A
Abigailwilliams · Aug 4, 2020 · 2.1K views
Question
How to remove the grid from a pcolor plot ? grid off does not work.   x = linspace(0,10); [X,Y] = meshgrid(x,x); z = X.*Y; s = pcolor(x,x,z); s.FaceColor = 'interp';
Expert Answer
Profile picture of Kshitij Singh
Kshitij Singh PhD Expert
Answered Aug 20, 2026
x = linspace(0,10); 
[X,Y] = meshgrid(x,x); 
z = X.*Y; 
pcolor(x,x,z); 
shading interp 
Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!