enable/disable parameter in embedded matlab function

2 ビュー (過去 30 日間)
st
st 2013 年 3 月 16 日
hello, i've got an embedded matlab function with several parameters(variables). I try to enable/disable parameter 1 and 2 in dependency on parameter 3. Means, if the value of parameter 3 is "1", parameter 1 is enabled and parameter 2 is disabled. If the value of parameter 3 is "2", both parameters are enabled. Is there a possibility for this?
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 16 日
Can you explain what you mean by enable and disable?
st
st 2013 年 3 月 16 日
yes, for example i have the parameters a,b,c,d and a function y=a+b+c. If parameter "d" has the value 1 --> y=a. if parameter "d" has the valua 2 --> y=a+b. if parameter "d" has the value 3 --> y=a+b+c.
hope this is understandable. Another idee was to enable/disable the inputports for a,b and c

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

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 16 日
編集済み: Azzi Abdelmalek 2013 年 3 月 16 日
function y=fcn(a,b,c,d)
if d==1
y=a
elseif d==2
y=a+b
elseif d==3
y=a+b+c
end
%or
function y=fcn(a,b,c,d)
v=[a b c];
y=sum(v(1:d))
  2 件のコメント
st
st 2013 年 3 月 16 日
it can be so simple. thanks a lot!
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 16 日
If the answer helped, then mark it as accepted

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by