如何用matlab画出一幅图像的频谱图?求程序
问题描述:
如何用matlab画出一幅图像的频谱图?求程序
答
x = -2.9:0.1:2.9;
y = randn(10000,1);
hist(y,x)
这个是画的直方图,不知道是不是你说的频谱图?