MATLAB: Change color to grey

color

freqz2(abs(h,[32 32])); give colorful image , iwant to change the color to grey ? how can i do that !

Best Answer

colormap([0.86 0.86 0.86])
freqz2(abs(h,[32 32]));
Related Question