how to find a root of polynomial using matlab

조회 수: 2 (최근 30일)
mustafa jbara
mustafa jbara 2020년 10월 18일
편집: Alan Stevens 2020년 10월 18일
C (y) = 1 + 3 tan( y/√2)

답변 (2개)

KSSV
KSSV 2020년 10월 18일
sym c(y)
c(y)= 1+3*tan(y/sqrt(2))==0 ;
r = solve(c,y) ;
double(r)
  댓글 수: 1
KSSV
KSSV 2020년 10월 18일
It is not a polynomial .. how you expect to write?

댓글을 달려면 로그인하십시오.


Alan Stevens
Alan Stevens 2020년 10월 18일
Or directly
y = sqrt(2)*atan(-1/3);
  댓글 수: 2
mustafa jbara
mustafa jbara 2020년 10월 18일
how find roots
Alan Stevens
Alan Stevens 2020년 10월 18일
편집: Alan Stevens 2020년 10월 18일
That gives you a root! i.e. a value of y that makes the expression 1+3*tan(y/sqrt(2)) equal zero.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Polynomials에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by