MathGroup Archive 2006

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

Search the Archive

Re: Several functions in a single 2D-plot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg68749] Re: [mg68703] Several functions in a single 2D-plot
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Fri, 18 Aug 2006 03:11:50 -0400 (EDT)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

Needs["Statistics`"];

Plot[
    Evaluate[
      Table[
        PDF[NormalDistribution[m, 1],x],
        {m,0,2}]],
    {x,-3,5},
    PlotStyle->{Red,Green,Blue}];


Bob Hanlon

---- Vicent <vginer at gmail.com> wrote: 
> Hi, everyone!
> 
> I am new to Mathematica, and I have a quick question that will be very
> easy for you, I guess.
> 
> How can I plot several functions within the same 2D graphic?
> 
> For example, I want to draw the PDF of 3 continuous statistical
> distributions (I mean, 3 functions), but put together into the same 2D
> plot.
> 
> Thank you in advance!
> 
> --
> Vicent
> 


  • Prev by Date: RE: product formula in mathematica
  • Next by Date: Re: product formula in mathematica
  • Previous by thread: Re: Several functions in a single 2D-plot
  • Next by thread: RE: Several functions in a single 2D-plot