已知其他变量数组,求解隐函数中未知变量的一组解。
Show older comments
syms t C D Q v x y z;
C=[4,53,2,5];
D=12*ones(1,4);
Q=5*ones(1,4);
v=4*ones(1,4);
x=[43,5,1,4];
y=[43,53,2,1];
z=[1,3,5,7];
exp = C.*(2*sqrt(t.*D)).^3-Q.*exp(-((x-v.*t).^2+y.^2+z.^2))./(4*t.*D);
t = solve(exp,t)
结果t应该是1*4的矩阵,有四个结果,请问怎么运行出来?求聪明的人解答一下
Accepted Answer
More Answers (0)
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!