フィルターのクリア

In fi >= non-fi, or non-fi >= fi, the non-fi must be a constant

30 ビュー (過去 30 日間)
Tamer
Tamer 2015 年 5 月 21 日
コメント済み: Walter Roberson 2021 年 4 月 26 日
Hello There,
I'm converting a Matlab (.m) file to fixed point
"Function call failed."
"In fi <= non-fi, or non-fi <= fi, the non-fi must be a constant."
Here is my code -----------------
x=amp*sin_vec(2*pi*f*t); % Sinusoid input singal (Hz)
jj=-(amp-Delta):Delta:(amp-Delta);
for j=1:jx
for k=1:1:km
if (x(k)>=jj(j)) % <---- error at this line
end
end

採用された回答

Walter Roberson
Walter Roberson 2015 年 5 月 21 日
One of those two variables, x or jj, is in fixed point and the other one is not. You need to make both of them fixed point.
  3 件のコメント
Essam Ali
Essam Ali 2021 年 4 月 26 日
dears, how can I make the variables as fixed point?
Walter Roberson
Walter Roberson 2021 年 4 月 26 日
Tamer showed
x=fi (x,true,16,16);
which is an example of making x into a fi. You would need to adjust the parameters of the fi() call to be appropriate for the situation.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by