MathGroup Archive 2003

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

Search the Archive

Re: Combining plots and using different colors

  • To: mathgroup at smc.vnet.net
  • Subject: [mg42708] Re: [mg42695] Combining plots and using different colors
  • From: David Turner <dturner at faulkner.edu>
  • Date: Tue, 22 Jul 2003 04:40:43 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Vladimira,

Try

pl1=Plot3D[{2x+y^2,RGBColor[1,0,0]},{x,-10,10},{y,-10,10}];

pl2 = Plot3D[{x + y, RGBColor[0, 0, 1]}, {
        x, -10, 10}, {y, -10, 10}, ColorOutput -> CMYKColor];

Show[pl1,pl2];

Regards,

David


  • Prev by Date: Re: Re: Speed improvements in Mathematica 5 ??
  • Next by Date: How to generate list of long division auxillary numbers?
  • Previous by thread: Combining plots and using different colors
  • Next by thread: Re: Combining plots and using different colors