Azzera filtri
Azzera filtri

how to find a root of polynomial using matlab

2 visualizzazioni (ultimi 30 giorni)
mustafa jbara
mustafa jbara il 18 Ott 2020
Modificato: Alan Stevens il 18 Ott 2020
C (y) = 1 + 3 tan( y/√2)

Risposte (2)

KSSV
KSSV il 18 Ott 2020
sym c(y)
c(y)= 1+3*tan(y/sqrt(2))==0 ;
r = solve(c,y) ;
double(r)

Alan Stevens
Alan Stevens il 18 Ott 2020
Or directly
y = sqrt(2)*atan(-1/3);
  2 Commenti
Alan Stevens
Alan Stevens il 18 Ott 2020
Modificato: Alan Stevens il 18 Ott 2020
That gives you a root! i.e. a value of y that makes the expression 1+3*tan(y/sqrt(2)) equal zero.

Accedi per commentare.

Categorie

Scopri di più su Polynomials in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by