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';
Related Questions
Expert Answer
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