| Author |
Comment/Response |
Casey Mann
|
10/29/01 8:35pm
Hi. It shouldn't be too difficult. It depends on how f(x,n) is defined. If it is something like
f[x_,n_]:=x^n, 1<=n<=10
then to plot f as n changes, use the Table command:
Plot[Table[f[x,n],{n,1,10}],{x,-2,2}]
Best,
Casey
URL: , |
|