Re: How to do a family of plots?
- To: mathgroup at smc.vnet.net
- Subject: [mg64490] Re: How to do a family of plots?
- From: albert <awnl at arcor.de>
- Date: Sun, 19 Feb 2006 05:35:58 -0500 (EST)
- References: <dt6kp3$nhr$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
> I'm trying to get plots of p vs L with f as a parameter. Thanks for any
> help, Rob
>
>
> p[f_,L_]:=(1-f) ArcCos[Exp[-2/L]]
>
> {q,r,y,z}=Plot[p[f,L],{L,0.1,10}]
> /. f->{0.2,0.4,0.6,0.8}
{q, r, y, z} = Map[
Plot[p[#, L], {L, 0.1, 10}] &,
{0.2, 0.4, 0.6, 0.8}
];
albert