首页 > 其他 > 详细

《高等应用数学问题的MATLAB求解》——第6章习题代码

时间:2020-07-25 10:06:22      阅读:59      评论:0      收藏:0      [点我收藏+]

(1)

>> syms x y z;
>> f1(x,y,z)=24*x*y-x^2-y^2-x^2*y^2-13;
>> f2(x,y,z)=24*x*z-x^2-z^2-x^2*z^2-13;
>> f3(x,y,z)=24*y*z-y^2-z^2-y^2*z^2-13;
>> [x0,y0,z0]=vpasolve(f1,f2,f3);
>> norm(f1(x0,y0,z0)),norm(f2(x0,y0,z0)),norm(f3(x0,y0,z0))
>> syms x y z;
>> f1(x,y,z)=x^2*y^2-z*x*y-4*x^2*y*z^2-x*z^2;
>> f2(x,y,z)=x*y^3-2*y*z^2-3*x^3*z^2-4*x*z*y^2;
>> f3(x,y,z)=y^2*x-7*x*y^2+3*x*z^2-x^4*z*y;
>> [x0,y0,z0]=vpasolve(f1,f2,f3);
>> norm(f1(x0,y0,z0)),norm(f2(x0,y0,z0)),norm(f3(x0,y0,z0))

《高等应用数学问题的MATLAB求解》——第6章习题代码

原文:https://www.cnblogs.com/Math-Nav/p/13375095.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!