MATLAB符号表达式赋值问题!!!
symsx;A=zeros(9,9);B=[x^5,x^3,x;3*x^2,4,7*x^4;5,7,1];A(1:3,1:3)=B;可以实现,但A(1:3,1:3)=A(...
syms x;
A=zeros(9,9);B=[x^5,x^3,x;3*x^2,4,7*x^4;5,7,1];
A(1:3,1:3)=B;可以实现,但
A(1:3,1:3)=A(1:3,1:3)+B;就不行,错误报告如下:
The following error occurred converting from sym to double:
Error using ==> mupadmex
Error in MuPAD command: DOUBLE cannot convert the input expression into a double array.
If the input expression contains a symbolic variable, use the VPA function instead.
请高手帮忙,不懂的别来!!! 展开
A=zeros(9,9);B=[x^5,x^3,x;3*x^2,4,7*x^4;5,7,1];
A(1:3,1:3)=B;可以实现,但
A(1:3,1:3)=A(1:3,1:3)+B;就不行,错误报告如下:
The following error occurred converting from sym to double:
Error using ==> mupadmex
Error in MuPAD command: DOUBLE cannot convert the input expression into a double array.
If the input expression contains a symbolic variable, use the VPA function instead.
请高手帮忙,不懂的别来!!! 展开
2个回答
展开全部
我这里matlab试的时候,A(1:3,1:3)=A(1:3,1:3)+B;也不能实现。
原因是A是double类型的,而B是sym类型的。
A没能够实现强制转换。
可以这样:
A1= A(1:3,1:3);
A1=B;
A1=A1+B;
原因是A是double类型的,而B是sym类型的。
A没能够实现强制转换。
可以这样:
A1= A(1:3,1:3);
A1=B;
A1=A1+B;
更多追问追答
追问
我是想把A的分块矩阵拿来运算,结果再返回到这个分块矩阵中,你这样只是新建了一个符号型矩阵而已,不是我想要实现的。。。。
错误报告里说,用VPA,这个我不会,你会不?
追答
VPA不太了解。
不过,你可以试试:
A=[A1,zeros(3,6);zeros(6,9)];
这样A是不是你想要的呢?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询