calculating x when y is > 0
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gavin Seddon
am 13 Feb. 2019
Kommentiert: Gavin Seddon
am 14 Mär. 2019
Hello
I have plotted a changing distance (d(x)) with time using cftool and calculated the function. Its derivative was calculated and this is v(x). when plotted with fplot the initial Y values are 0. I am calculating the x position at which this rises above the x axes (y>0). To do this i made v(x) equivalent to 1 (==1) and evluated x yet:
>>v(x)==1
ans =
(4119*x^2)/10000 - (1787*x)/5000 + 891/2500 ==1
>> eval x
x =
x
Will someone please help to calculate this? i can measure the x value directly. It is preferable to standardise this procedure.
GS.
2 Kommentare
Akzeptierte Antwort
Walter Roberson
am 14 Feb. 2019
solve(v(x)==1,x)
16 Kommentare
Walter Roberson
am 13 Mär. 2019
Do you mean that the second column of your table contains x values ? If so then
YourTable.NewThirdColumn = double( subs( v, x, YourTable.{:,2}));
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Polynomials finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!