フィルターのクリア

zeros function: is this old syntax and what does this line mean? Error using zeros Size inputs must be scalar.

2 ビュー (過去 30 日間)
FX
FX 2018 年 1 月 15 日
コメント済み: FX 2018 年 1 月 16 日
Error using zeros
Size inputs must be scalar.
From the line:
X=zeros(N,1:(n+1));
The code example is from year 1998, is this still valid syntax or is there something I don't just get?
Thanks for help.

回答 (1 件)

Walter Roberson
Walter Roberson 2018 年 1 月 15 日
The only time that code was valid was if n happened to be 0, in which case the code would have been the same as X=zeros(N,1:1) which would have been X=zeros(N,1) which is valid.
If you are trying to declare an array which is N by (n+1) then you need
X=zeros(N,n+1);
  1 件のコメント
FX
FX 2018 年 1 月 16 日
This code was actually from 1993 and it worked back then. Maybe the syntax of zeros has changed in 25 years?

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

カテゴリ

Help Center および File ExchangeMatched Filter and Ambiguity Function についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by