Filter löschen
Filter löschen

find the minimum value of y for positive vales of x

2 Ansichten (letzte 30 Tage)
Aaron Aguilar
Aaron Aguilar am 3 Sep. 2020
Kommentiert: per isakson am 3 Sep. 2020
i have xmin=min(y(x>0)); where x=[-100:100] & y =x^3+60x^2-50 it gives me -50 which is wrong
aloso i have xmin=min(y(0:x(end))); where x=[-100:100] & y =x^3+60x^2-50 it gives me -50 which is wrong answer
any ideas? is my expression wrong ?

Akzeptierte Antwort

per isakson
per isakson am 3 Sep. 2020
Try this
%%
x = (-100:100);
y = x.^3+60*(x.^2)-50;
%%
xmin = min(y(x>0))
which returns
xmin =
11
>>

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by