MATLAB求解多项式的问题

问题描述:

MATLAB求解多项式的问题
从书上直接抄的两行
p=[1 -2 0 25 116]
r=roots(p)
运行之后居然报错
subscript indices must either be real positive integers or logicals.
我的版本是7.8.0(R2009a),不知道和这个有没有关系

多项式没有实数解,只有复数解>> p=[1 -2 0 25 116]r=roots(p)p = 1-2 025 116r = 2.9832 + 2.7986i 2.9832 - 2.7986i-1.9832 + 1.7320i-1.9832 - 1.7320i