how to solve equation trimf(x, [0 4 10]) = 0.5;

how to solve equation trimf(x, [0 4 10]) = 0.5 in matlab?
thanks for help!

 Accepted Answer

>> fminsearch(@(x)(-0.5+trimf(x,[0 4 10])).^2,0)
ans =
2
Confirm:
>> trimf(2,[0 4 10])
ans =
0.5

More Answers (0)

Categories

Find more on Powertrain Blockset in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!