Matlab function help in simulink model
1 回表示 (過去 30 日間)
古いコメントを表示
i want to write this function in Matlab Function Box
{
function y = func_name(a)
b=b+a;
y=b;
}
the error is b is not defined
Actually I want write code for integration and derivative block
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 8 月 19 日
編集済み: Azzi Abdelmalek
2013 年 8 月 19 日
function y = func_name(a)
persistent b
if isempty(b)
b=0;
end
b=b+a;
y=b;
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Naming Conventions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!