Improving an if else function

1 回表示 (過去 30 日間)
Natialol
Natialol 2013 年 3 月 28 日
回答済み: AKARSH KUMAR 2020 年 6 月 24 日
Hello Board,
Anyone on ideas on a more efficient solution than the if else function below?? This takes the bulk of the time for the code so I need to reduce it.
function result = vre(t,r,e.......)
if (t==4 && r>0)
result = 0;
elseif (e==4 && r==0)
result = 1;
.
.
.
end
end
Thanks
  2 件のコメント
Cedric
Cedric 2013 年 3 月 28 日
編集済み: Cedric 2013 年 3 月 28 日
What is the code where you put the 3 dots?
Natialol
Natialol 2013 年 3 月 29 日
編集済み: Natialol 2013 年 3 月 29 日
The full function is
function result = vre(t,r,e,n,d)
if (e==4 && r>0)
result = 0;
elseif (e==4 && r==0)
result = 1;
elseif (e<4 && r==1)
result = t;
elseif (e<4 && r==2)
result = d;
else
result=n;
end
end
Thanks

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

回答 (1 件)

AKARSH KUMAR
AKARSH KUMAR 2020 年 6 月 24 日
I don't think this if else condition could further be reduced, try to check in your other part of code.

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by