关于Simulink中Polyfit模块的使用
本帖最后由 shapiro 于 2011-5-26 12:47 编辑在仿真中需要使用多项式拟合,于是用到了Polyfit模块,但是一直运行不了,用polyfit命令直接在matlab中运行是很简单实现的,程序如下:clear all
clc
x=';
a=[-2 5 6]';
f=@(x) a(1)*x.^2+a(2)*x+a(3);
y=f(x);
factor=polyfit(x,y,2);
factor =
-2.0000 5.0000 6.0000
这是我建的模型,下图:
前两个模块的参数设置
有熟悉Simulink的高手帮忙看看,运行的报错有两条:
1)Error in port widths or dimensions.Output port 1 of 'mean_0525/Least Squares Polynomial Fit/Constant' is a matrix.
2)Error reported by S-function 'sdspqreslv2' in 'mean_0525/Least Squares Polynomial Fit/QR Solver':
The number of rows of input A must match the number of rows of input B.
问题个人觉得就是在QR Solver上出现的A B矩阵不同,但是我不知道怎么更改....
先谢谢了!
页:
[1]