15 May 13:30
Re: plot3d multiple functions bug?
From: Andrej Vodopivec <andrej.vodopivec <at> gmail.com>
Subject: Re: plot3d multiple functions bug?
Newsgroups: gmane.comp.mathematics.maxima.general
Date: 2008-05-15 11:30:40 GMT
Subject: Re: plot3d multiple functions bug?
Newsgroups: gmane.comp.mathematics.maxima.general
Date: 2008-05-15 11:30:40 GMT
2008/5/15 Krzysztof Leśniak <much <at> mat.uni.torun.pl>: > I cannot obtain the 3d plotting of 2 functions (and more functions too): > > plot3d([7*x-3*y, x^2-y^2], [x,-5,5], [y,-5,5])$ > > List [7*x-3*y,x^2-y^2] is not of length 3 -- an error. To debug this > try debugmode(true); plot3d can't plot multiple surfaces. You can use the draw package: load(draw)$ draw3d( color=red, explicit(7*x-3*y, x, -5, 5, y, -5, 5), color=blue, explicit(x^2-y^2, x, -5, 5, y, -5, 5))$ -- -- Andrej
RSS Feed