Computed maximum size of the output of function 'colon' is not bounded.

3 ビュー (過去 30 日間)
Sam136
Sam136 2016 年 1 月 14 日
コメント済み: Walter Roberson 2016 年 1 月 14 日
Hello,
I get this error in a Matlab function of my Simulink code: Computed maximum size of the output of function 'colon' is not bounded.Static memory allocation requires all sizes to be bounded.The computed size is [1 x :?].
Here is the Matlab function:
function y=fcn(a,b)
stp=(b-a)/100
y=a:stp:b
a and b are two constants as inputs to the block. When I define a and b inside the Matlab function, I don't get the error. How can I solve this problem?

採用された回答

Steven Lord
Steven Lord 2016 年 1 月 14 日
Try using LINSPACE instead.
  1 件のコメント
Walter Roberson
Walter Roberson 2016 年 1 月 14 日
Remember to use 101 points to get intervals of 1/100 of the range.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulink についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by