MathGroup Archive 2001

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Plotting Intersecting Planes

  • To: mathgroup at smc.vnet.net
  • Subject: [mg27189] Re: Plotting Intersecting Planes
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Fri, 9 Feb 2001 03:10:34 -0500 (EST)
  • Organization: Universitaet Leipzig
  • References: <95tqv7$mb5@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hi,

Needs["Graphics`ContourPlot3D`"]

glst = ContourPlot3D[#, {x, -1, 1}, {y, -1, 1}, {z, -1, 1}, 
        DisplayFunction -> Identity] & /@
    {3*x - 2*y + 4*z - 3, 
      2x - 4y + 3z - 1, x - 3y + 2z - 5}

Show[glst, DisplayFunction -> $DisplayFunction]

Regards
  Jens

heathwatts at my-deja.com wrote:
> 
> Hi,
> I cannot remember how to plot two or more linear equations. I'm trying
> to plot 3x-2y+4z==3, 2x-4y+3z==1, and x-3y+2z==5. I've solved the
> equations for z and tried Plot3D and ImplicitPlot3D to no avail. Please
> help.
> Thanks,
> Heath
> 
> Sent via Deja.com
> http://www.deja.com/


  • Prev by Date: Re: Thickness in ParametricPlot3D
  • Next by Date: Re: Plotting Intersecting Planes
  • Previous by thread: Re: Plotting Intersecting Planes
  • Next by thread: Re: Plotting Intersecting Planes