COMPUTE SMOOTH FOURIER AMPLITUDE SPECTRUM (smoothFAS)

This function computes Fourier amplitude spectrum and its smoothed version. For smoothing, it uses window averaging.
ダウンロード: 326
更新 2019/2/9

ライセンスの表示

COMPUTE SMOOTH FOURIER AMPLITUDE SPECTRUM

This function computes Fourier amplitude spectrum and its smoothed version. For smoothing, it uses window averaging based on median or rms value of the window. Default number of windows is 20. The code also accepts a user-defined value for number of windows. Windows have equal number of data points.

USAGE:

[fas] = smoothFFT(w,dt);

or with rms method and a custom number of windows parameter for smoothing

[fas] = smoothFFT(w,dt,'n_windows',25,'method',rms);

STATIC INPUT:

w = vector of time series data (1xn or nx1)
dt = sampling interval (e.g., 0.01 second for 100 samples-per-second data)
n_windows = number of windows for averaging (each window contains same number of data points)
method = averaging method (median, rms) (e.g., 'method','rms').

VALID PROP_NAME / PROP_VAL PAIRS:
---------------------------------------------------------
'n_windows' --> (1x1)-[numeric]-[default:20]
'method' --> [text]-[default: 'median']

OUTPUT:
fas = structure output array
fas.freq = frequency vector
fm = Fourier amplitudes
fas.smooth = smoothed Fourier amplitudes

EXAMPLE: See demo.m

ACKNOWLEDGEMENTS:

I benefitted from smooth.m function of MatLAB for median and rms averaging. The original code is available at https://github.com/ashao/matlab/blob/master/external/smooth.m

If you find this code useful for your application, please don't forget to rate it.

For questions / suggestions / comments and bug reports: kalkan76@gmail.com

See also smoothSpectra (https://www.mathworks.com/matlabcentral/fileexchange/70217-smoothing-function-for-fourier-amplitude-spectrum?s_tid=prof_contriblnk)

引用

Dr. Erol Kalkan, P.E. (2024). COMPUTE SMOOTH FOURIER AMPLITUDE SPECTRUM (smoothFAS) (https://www.mathworks.com/matlabcentral/fileexchange/70166-compute-smooth-fourier-amplitude-spectrum-smoothfas), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2018b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersGeology についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

smoothFAS

バージョン 公開済み リリース ノート
1.0.5

Updated notes

1.0.4

Updated notes

1.0.3

Updated notes

1.0.2

Updated files

1.0.1