what is function of [ ] in this code

1 回表示 (過去 30 日間)
moonman
moonman 2011 年 10 月 21 日
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

採用された回答

Wayne King
Wayne King 2011 年 10 月 21 日
It says "use the default value for the input N, the number of frequency points".
in freqz() that is 512.
So
[H,F] = freqz(h1336,1,[],fs);
is the same as:
[H,F] = freqz(h1336,1,512,fs);
  1 件のコメント
moonman
moonman 2011 年 10 月 21 日
Thanks a lot

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
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.

カテゴリ

Help Center および File ExchangeMultirate and Multistage Filters についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by