|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
sym和vpa的关系
我在编程时候想得到f(x)的表达式,用x1,x2...,xm表示。其中X是一个已知的n*m的矩阵。a是一个已知的m维向量
sumd=0;
for i=1:m
x(i)=sym(sprintf('x%i',i));
end
for i=1:n
sumd=sumd+a(i)*exp(-(X(i,:)-x)*(X(i,:)-x)'
end
f=1+2*sumd;
运行结果是
??? The following error occurred converting from sym to double:
Error using ==> sym.double
DOUBLE cannot convert the input expression into a double array.
If the input expression contains a symbolic variable, use the VPA function instead.
Error in ==> jqsvm at 71
x(i)=vpa(sprintf('x56666144',i));
为什么要用VPA函数呢? |
|