how to find a root of polynomial using matlab

2 次查看(过去 30 天)
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)

Alan Stevens
Alan Stevens 2020-10-18
Or directly
y = sqrt(2)*atan(-1/3);
  2 个评论
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