how to solve equation trimf(x, [0 4 10]) = 0.5;
1 回表示 (過去 30 日間)
古いコメントを表示
how to solve equation trimf(x, [0 4 10]) = 0.5 in matlab?
thanks for help!
0 件のコメント
採用された回答
Shashank Prasanna
2013 年 2 月 5 日
>> fminsearch(@(x)(-0.5+trimf(x,[0 4 10])).^2,0)
ans =
2
Confirm:
>> trimf(2,[0 4 10])
ans =
0.5
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!