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