|
楼主 |
发表于 2007-10-16 19:40
|
显示全部楼层
回复 #6 无水1324 的帖子
http://forum.vibunion.com/forum/thread-53071-1-1.html
这个帖子中谈论了matlab绘制的方法,但其中的第二个方程可以解出A^2的表达式,所以简化了问题!
但在实际问题中并不是都可以这样简化的,就像此贴中的两个方程,我尝试了maple,
有个这样的函数:implicitplot([expr1,expr2,t], x=a..b, y=c..d, options)
举例如下:- with(plots,implicitplot);
- implicitplot([x^2+y^2+z^2=1, (x+z/2)^2/(5/4)+y^2=1/3, z], x=-1..1, y=-1..1);
复制代码
我将expr1,expr2,t分别替换为帖子中的两个方程和A,结果如下:
- with(plots,implicitplot);
- > implicitplot([A-B^2/((1-B^2+0.03*A^2)^2+0.16*B^2)^(1/2)=0, A1-(1+(2/B^2-1)*A^2+0.06/B^2*A^4)^(1/2) = 0, A], B=0.1..2.5, A1=0.1..7);
复制代码
[implicitplot]
Error, (in plots/implicitplot) invalid input: resultant form requires that the inputs be polynomials/equations in the elimination variable
[ 本帖最后由 unknowno 于 2007-10-16 19:42 编辑 ] |
|