how to find roots of equation having tan(x) or exp(x)
Ältere Kommentare anzeigen
how to find roots of equation having tan(x) or exp(x)
I know how to calculate roots of polynomial having numerical values but i am stuck with it
Akzeptierte Antwort
Weitere Antworten (3)
Andrei Bobrov
am 3 Okt. 2011
fzero(@(x)exp(x)+x-10,0)
fzero(@(x)tan(x)-x-.01,0)
fzero(@(x)tan(x)-x-.01,pi)
moonman
am 3 Okt. 2011
0 Stimmen
1 Kommentar
Wayne King
am 3 Okt. 2011
then fzero will work as I suggested.
fzero(@(x) exp(x)+x-10,0)
says "Find the zeros of exp(x)+x-10 near 0
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!