等号处出现解析错误。
3 views (last 30 days)
Show older comments
M^-1=[M_11 M_12 M_13;M_21 M_22 M_23;M_31 M_32 M_33];
M^-1.*C=[G_11 G_12 G_13;G_21 G_22 G_23;G_31 G_32 G_33];
M^-1*(Psi).'=[O_11 O_12 O_13;O_21 O_22 O_23;O_31 O_32 O_33];
上面三个等号都出现解析错误
0 Comments
Accepted Answer
xdvttrs
on 20 May 2023
仅供参考,如果是定义变量左侧的三个式子不能这么表达
需要
M1=[M_11 M_12 M_13;M_21 M_22 M_23;M_31 M_32 M_33];
如果是定义方程
需要
eq1=M^-1==[M_11 M_12 M_13;M_21 M_22 M_23;M_31 M_32 M_33];
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!