Error, (in ...) input system must be an ODE system, got independent variables ...
Description
Examples
See Also
The error message occurs only when there are unknown functions operating on different independent variables in the same problem.
Example 1 gy entered instead of gx
dsolvedifffx,x=gy,numeric;
Error, (in dsolve/numeric/process_input) input system must be an ODE system, got independent variables {x, y}
Example 2 Two separate ODE problems entered as one problem, each using a different independent variable.
dsolvedifffx,x=fx,diffgy,y=−gy,f0=1,g0=−1,numeric;
Solution Split the problem into 2 parts:
dsolvedifffx,x=fx,f0=1,numeric,dsolvediffgy,y=−gy,g0=−1,numeric;
procx_rkf45...end proc,procx_rkf45...end proc
Or to fix 'g' using:
dsolvedifffx,x=fx,diffgx,x=−gx,f0=1,g0=−1,numeric;
procx_rkf45...end proc
diff, dsolve
Download Help Document
What kind of issue would you like to report? (Optional)