Question: How can psi(t) be assigned to psi without "recursive assignment error"

psi := psi(t)

psi := psi(t);
Error, recursive assignment
How can this assignment be accomplished?

Please Wait...