what is function of [ ] in this code
이전 댓글 표시
Here is the code
h1336=[];
L=50;
fs=8000;
fb=1336;
h1336 = (2/L)*cos(2*pi*fb*(0:L-1)/fs);
[H,F] = freqz(h1336,1,[],fs);
What does this bracket [ ] do in freqz command
채택된 답변
추가 답변 (1개)
Walter Roberson
2011년 10월 21일
If you do not specify the integer n, or you specify it as the empty vector [], the frequency response is calculated using the default value of 512 samples.
카테고리
도움말 센터 및 File Exchange에서 Image Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!