What do to with ode45 symfun error?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am using code from adress http://matlab.cheme.cmu.edu/2011/09/08/plane-poiseuille-flow-bvp-solve-by-shooting-method//
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개)
Jan
2018년 5월 1일
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
Jan
2018년 5월 1일
편집: Jan
2018년 5월 1일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!