how to read a function handle parameter when i use ode23
이전 댓글 표시
Hi all; I use ode23 to solve the ordinary differential equations in the form.
[~,y] = ode23(@(t,x)f(t,x,0, kc, @(t)lookup_u(zdot,t)), [0 2], x00,opt);
My quation is: can I read the value x after ode23 is solved to use these values in a different function? Regards
답변 (1개)
Torsten
2016년 6월 27일
0 개 추천
x from above is just a formal paramter. The solution is returned in the y-vector.
Best wishes
Torsten.
댓글 수: 3
Muna Shehan
2016년 6월 27일
Muna Shehan
2016년 6월 27일
Torsten
2016년 6월 28일
I think it's easier if you explain the underlying problem in more detail ...
Best wishes
Torsten.
카테고리
도움말 센터 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!