|
[Date Index]
[Thread Index]
[Author Index]
Re: filled plot on part of x-interval
- To: mathgroup at smc.vnet.net
- Subject: [mg44664] Re: filled plot on part of x-interval
- From: AES/newspost <siegman at stanford.edu>
- Date: Thu, 20 Nov 2003 03:16:29 -0500 (EST)
- References: <200311170838.DAA01205@smc.vnet.net> <EB290F48-18F5-11D8-AB6F-00039311C1CC@mimuw.edu.pl> <200311181141.GAA12365@smc.vnet.net> <bpff4j$lrl$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
I'll still assert that something like:
Needs["Graphics`Graphics`"];
Needs["Graphics`Colors`"];
Needs["Graphics`FilledPlot`"];
DisplayTogether[
FilledPlot[{Sin[x], Sin[x]}, {x,2,8}],
Plot[Sin[x], {x,0,10}, PlotStyle->Red]];
is clear, simple, flexible, and readable -- and allows you to easily
modify the styles (linewidths, colors) of the different components of
the plot independently, as done here, and add additional stuff if you
like.
DisplayTogether is your friend -- haven't run into a headache with it
yet.
Prev by Date:
3D Convex Hull
Next by Date:
Re: How to remove part of ODE solution containing (0.+0.i)'s
Previous by thread:
Re: Re: filled plot on part of x-interval
Next by thread:
Re: filled plot on part of x-interval
|