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!