how to make fft2 surf plot with z axis in dB?
Ältere Kommentare anzeigen
i tried to normalize this matrix with the maximum
and: p=10*log10(p);
but i get mess
how can i avoid that?
Akzeptierte Antwort
Weitere Antworten (2)
Youssef Khmou
am 20 Nov. 2014
This problem does not occur with the following test :
H=exp(-randn(10).^2);
F=abs(fftshift(fft2(H,200,200)));
F=F/max(F(:));
surf(20*log10(F));
try abs() as mentioned earlier .
Kobi
am 20 Nov. 2014
Bearbeitet: Star Strider
am 20 Nov. 2014
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
