What do to with ode45 symfun error?

1 Ansicht (letzte 30 Tage)
I G
I G am 1 Mai 2018
Bearbeitet: Jan am 1 Mai 2018
but every time when I want to execute it I got:
'Undefinied function 'exist' for input arguments of type 'symfun'.
Error in odearguments line 59, if (exist(ode)==2).
Error in ode45 line 113 [neq,tspan,ntsoan,next,t0,tfinal,tdir...]
I have not idea what to do? I checked, my matlab version has symbolic mathtoolbox.
  1 Kommentar
Jan
Jan am 1 Mai 2018
I've removed the duplicate question.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Jan
Jan am 1 Mai 2018
The message means, that you provide a symbolic function, but ode45 handles numerical functions only. Please post your inputs and how you call this tool.
  2 Kommentare
I G
I G am 1 Mai 2018
I use exactly same code from mentioned link in my question, please look there. I am not able to post nothing else now.
Jan
Jan am 1 Mai 2018
Bearbeitet: Jan am 1 Mai 2018
The original code has a hilarious detail: It starts a function with "clc; close all; clear all;". This indicates securly, that the programmer does not know, what he or she is doing. Clearing all variables on top of a function, where no variables are existing, is a dumb cargo cult programming. After this first line of code, I would not trust the programmer anymore.
Nevertheless, the shown code does not include any symbolic calculations, but "function dUdy = odefun(y,U)" is clearly a numerical function.
Note that it is not clear, which code you actually run. But it is definitely not only the pieces of code shown on this page. Try it again. Insert all code in functions. I guess you have inserted the code in a script and omitted the clear all (which is something I usually like!). In scripts this might be useful: clear variables , but the better solution is to use functions.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by