How to exit a function execution in MATLAB Function block in simulink?
75 ビュー (過去 30 日間)
古いコメントを表示
Bhargava Reddy Banala
2017 年 12 月 4 日
コメント済み: Bhargava Reddy Banala
2017 年 12 月 4 日
I have simulating the miller-L code in simulink using MATLAB function block. If the program is run for the first time, I want the output to be like this:
if isempty(flag)
flag=1;
con = initial*-1;
h1 = BinaryInput;
if BinaryInput == 1
MillerSignal = [con*ones(1,1) -con*ones(1,1)];
con=con*-1;
else
MillerSignal = [-con*ones(1,2)];
con = con*-1;
end
return;
end
I am not sure whether the return statement is returning out of the function or just from the function block. Is this correct? If not, what is the correct way to do it?
0 件のコメント
採用された回答
Walter Roberson
2017 年 12 月 4 日
編集済み: Walter Roberson
2017 年 12 月 4 日
The return would exit the function for that one call. If the internal code for MATLAB Function Block has anything more to execute then it would do so.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Simulink Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!