MathGroup Archive 2006

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

Search the Archive

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


  • Prev by Date: Re: Eliminate Complex Roots
  • Next by Date: Greek-Letter Bug? Replacing Print
  • Previous by thread: How to do a family of plots?
  • Next by thread: Re: How to do a family of plots?