how to find a root of polynomial using matlab

2 visualizaciones (últimos 30 días)
mustafa jbara
mustafa jbara el 18 de Oct. de 2020
Editada: Alan Stevens el 18 de Oct. de 2020
C (y) = 1 + 3 tan( y/√2)

Respuestas (2)

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

Iniciar sesión para comentar.


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

Iniciar sesión para comentar.

Categorías

Más información sobre Polynomials en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by