FFT on matrix dataset
12 ビュー (過去 30 日間)
古いコメントを表示
How do I calculate fft on the matrix dataset (M1.mat) and plot it?
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2021 年 2 月 5 日
編集済み: KALYAN ACHARJYA
2021 年 2 月 5 日
data_mat=load('filename.mat');
fft_result=fft(data_mat)
Please carefully check the size and details of the loaded mat file.
See the Matlab Doc FFT function here
Plot, hope you can do that
If variable are 1 D
Use plot()
2D Variable See the surf function
There are multiple ways of data visualization (plot function), check the dimentions of the plot variables and plot accordingly as per your requirement.
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!