Clear Filters
Clear Filters

how to find a root of polynomial using matlab

2 views (last 30 days)
C (y) = 1 + 3 tan( y/√2)

Answers (2)

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

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

Sign in to comment.

Categories

Find more on Polynomials in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!