Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 matlab 中创建了数组x_data和y_data值,并将它们绘制成:
x_data
y_data
plot(x_data,y_data,'o')
现在我将一个四阶多项式拟合到数据中。
我怎样才能得到x_data和y_data对应于这个四阶多项式?
用于polyval多项式评估。
polyval
y = polyval(p,x)返回在 x 处计算的 n 次多项式的值。输入参数 p 是一个长度为 n+1 的向量,其元素是要评估的多项式的降幂系数。
y = polyval(p,x)