how i can use roots in matlab

1 次查看(过去 30 天)
i need help to use roots function in matlab i have this
7x^4+5x^3=-4x-5
and i need to do it with the roots anyone can helpe me ?
  3 个评论
Torsten
Torsten 2019-7-2
编辑:Torsten 2019-7-2
Hint:
7x^4 + 5x^3 = -4x - 5
<->
7x^4 + 5x^3 + 0x^2 + 4x + 5 = 0

请先登录,再进行评论。

采纳的回答

Stephan
Stephan 2019-7-2
编辑:Stephan 2019-7-2
RHS has to be zero, then put the coefficients in descending order into a vector - read here:
p = [7 5 0 4 5]
result = roots(p)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by