フィルターのクリア

how to use pause command inside embedded matlab in simulink?

2 ビュー (過去 30 日間)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran 2012 年 10 月 20 日
I wrote a code for fft and placed inside embedded matlab block. I am getting error when i run it. Can anyone tell me option to go for an alternate solution for the use of " pause " command. x0=1;x1=2;x8=3;x9=4;
pause(.04)
a0=x0+x8
pause(.08)
a1=x1+x9
the above code is just a part of my project

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 20 日
編集済み: Azzi Abdelmalek 2012 年 10 月 20 日
function pause is not supported with matlab function, use instead interpreted matlab function
the content of your function file is
function y=fpose(u)
y1=u(1)+u(2)
pause(0.4)
y2=u(1)*u(2)
pause(0.4)
y=y1+y2
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 20 日
what version of matlab?
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 20 日
in matlab editor program a function (e.g named fpose)
function y=fpose(u)
%your code
pause(0.1)
in matlab function block set a name of your function created before

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

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by