【 MATLAB 】roots 函数介绍(多项式根)

举报
李锐博恩 发表于 2021/07/15 07:25:24 2021/07/15
【摘要】 roots Polynomial roots Syntax r = roots(p) Description r = roots(p)返回由p表示的多项式的根作为列向量。 输入p是包含n + 1个多项式系数的向量,从x^n的系数开始。 系数0表示在等式中不存在的中间功率。 For example, p = [3 2 -2]represents the...

roots

Polynomial roots

Syntax

r = roots(p)

Description

r = roots(p)返回由p表示的多项式的根作为列向量。

输入p是包含n + 1个多项式系数的向量,从x^n的系数开始。

系数0表示在等式中不存在的中间功率。

For example, p = [3 2 -2]represents the polynomial 3x^2+2x−2.

根函数解决了形式为p_1x^n+p_2x^{n-1}+...+p_nx^{n}+p_{n+1}=0的多项式方程.

多项式方程包含具有非负指数的单个变量。


Roots of Quadratic Polynomial

Solve the equation  3x^2 - 2x -4 = 0.

Create a vector to represent the polynomial, then find the roots.

p = [3 -2 -4];
r = roots(p)
r = 2×1 1.5352 -0.8685

Roots of Quartic Polynomial

Open Live Script

Solve the equationx^4-1=0 .

Create a vector to represent the polynomial, then find the roots.

p = [1 0 0 0 -1];
r = roots(p)
r = 4×1 complex -1.0000 + 0.0000i 0.0000 + 1.0000i 0.0000 - 1.0000i 1.0000 + 0.0000i


Input Arguments

p — Polynomial coefficients
vector

Polynomial coefficients, specified as a vector. For example, the vector [1 0 1] represents the polynomial x^2+1, and the vector [3.13 -2.21 5.99]represents the polynomial 3.13x^2−2.21x+5.99.

Data Types: single | double
Complex Number Support: Yes

 


Tips

  • Use the poly function to obtain a polynomial from its roots: p = poly(r). The poly function is the inverse of the roots function.

【 MATLAB 】poly 函数介绍

  • Use the fzero function to find the roots of nonlinear equations. While the roots function works only with polynomials, the fzero function is more broadly applicable to different types of equations.

在MATLAB命令窗口中输入:doc fzero 查看fzero的相关介绍。

文章来源: reborn.blog.csdn.net,作者:李锐博恩,版权归原作者所有,如需转载,请联系作者。

原文链接:reborn.blog.csdn.net/article/details/83344228

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。