magfftplot.m
来自「实现了传感器定位时」· M 代码 · 共 14 行
M
14 行
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 + =
减小字号Ctrl + -
显示快捷键?