필터 지우기
필터 지우기

What do to with ode45 symfun error?

조회 수: 2 (최근 30일)
I G
I G 2018년 5월 1일
편집: Jan 2018년 5월 1일
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
Jan 2018년 5월 1일
I've removed the duplicate question.

댓글을 달려면 로그인하십시오.

답변 (1개)

Jan
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
I G
I G 2018년 5월 1일
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 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 CenterFile Exchange에서 Numeric Solvers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by