how to find a root of polynomial using matlab

2 Ansichten (letzte 30 Tage)
mustafa jbara
mustafa jbara am 18 Okt. 2020
Bearbeitet: Alan Stevens am 18 Okt. 2020
C (y) = 1 + 3 tan( y/√2)

Antworten (2)

KSSV
KSSV am 18 Okt. 2020
sym c(y)
c(y)= 1+3*tan(y/sqrt(2))==0 ;
r = solve(c,y) ;
double(r)
  1 Kommentar
KSSV
KSSV am 18 Okt. 2020
It is not a polynomial .. how you expect to write?

Melden Sie sich an, um zu kommentieren.


Alan Stevens
Alan Stevens am 18 Okt. 2020
Or directly
y = sqrt(2)*atan(-1/3);
  2 Kommentare
mustafa jbara
mustafa jbara am 18 Okt. 2020
how find roots
Alan Stevens
Alan Stevens am 18 Okt. 2020
Bearbeitet: Alan Stevens am 18 Okt. 2020
That gives you a root! i.e. a value of y that makes the expression 1+3*tan(y/sqrt(2)) equal zero.

Melden Sie sich an, um zu kommentieren.

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!

Translated by