Re: beginner plot function with parameter
- To: mathgroup at smc.vnet.net
- Subject: [mg74030] Re: beginner plot function with parameter
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Wed, 7 Mar 2007 03:06:32 -0500 (EST)
- References: <esjg3c$269$1@smc.vnet.net>
Hi,
f[z_, s_] := (z/s)^2;
With[{s = 2},
Plot[f[z, s], {z, -s, s}]
]
Regards
Jens
Wei Li wrote:
> Dear Mathgroup,
>
> I am using mathematica 5 to plot a function with some parameter, I want to
> plot for example a simple parabolic function with positive parameter s:
>
> f[z_]:=(z/s)^2;
> Plot[f[z],{z,-s,s}];
>
> mathematica code doesn't seem to work, anyone can help?
>
> Thanks!
>
> Wei
>
>
>
>