kindlychung
- 10
- 0
This works:
This doesn't:
Why?
(I used Mathematica 7.0)
Code:
Manipulate[Plot[E^(n*x), {x, -10, 10}], {n, 1, 10}]
This doesn't:
Code:
f[x_] := E^(n*x);
Manipulate[Plot[f[x], {x, 1, 10}], {n, 1, 10}]
Why?
(I used Mathematica 7.0)