📄 magfftplot.m
字号:
function magfftplot(obj, zeroPadTo)
% MAGFFTPLOT Plot the magnitude square of the FFT of the sensor array data
% Example:
% magfftplot(s,128);
clf
[mags, fflip]=magfft(obj, zeroPadTo);
semilogy(180*fflip,mags(1:zeroPadTo),'r');
grid
title(['Averaged FFT of: ' obj.Name]);
xlabel('degrees');
ylabel('amplitude');
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -