Hi,
Consider the following code:
sage.var('R')
rho = sage.function('rho')(R)
r = rho(R=R).function(R)
Is there a way to assign some function to to rho
(e.g., as the solution of a differential equation, i.e., rho = desolve(…)
) such that r
is modified?
Thanks!
Martin