What are these commands in Matlab? Can any one explain them with examples. I searched them but didn't find any help
2 ビュー (過去 30 日間)
古いコメントを表示
I don't understand the following commands in Matlab. I searched their help but in vain. Can anyone explain them with examples?
M = metadata.iqDAC.';
downsamp = metadata.fs_iqDAC/metadata.fs_iqADC;
squeeze
hanning
fftshift
0 件のコメント
回答 (1 件)
Rik
2021 年 7 月 23 日
The first line is accessing a field iqDAC of the struct metadata, which it transposes.
The second line divides two variables.
%you can also use doc instead of help
help squeeze
help hanning
help fftshift
11 件のコメント
Walter Roberson
2021 年 7 月 24 日
Rik did the basic explaining; I described less than you could see in the first example of fft; https://www.mathworks.com/help/matlab/ref/fft.html#buuutyt-7
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!