Define a function. In the function MyFunc(x):=A*sin(x), A would need to be defined before the function, but x would not because it's a parameter of the function. If you had MyFunc(x,A):=A*sin(x), then neither A or x need to be defined before the function.
↧