Extract a function from a table

2 ビュー (過去 30 日間)
Sarah CHOUCHENE
Sarah CHOUCHENE 2019 年 11 月 17 日
コメント済み: Sarah CHOUCHENE 2019 年 11 月 20 日
Hello,
I really need to clear up my toughts, I want to extract a fonction from a table of two dimensions ( l,t) that I recover from and ODE method.
[t,l]=ode23('odef',[t0,tf],l0)
My goal is to integrate "l" Si I need to have a function to use for exemple the simpson method :
f = inline('l','t')
h = 100/N;
Isim=0.0;
for i=1:N
Isim= Isim+h*(1/6*f(t(i))+2/3*f((t(i)+t(i+1))/2)+1/6*f(t(i+1)));
end
Isim
Of corse this program doesn't work because I used a vecto as a function !
Do you have an idea how can I integrate from data ?
Thank you,
Regards,
  14 件のコメント
Walter Roberson
Walter Roberson 2019 年 11 月 20 日
What did the problem turn out to be?
Sarah CHOUCHENE
Sarah CHOUCHENE 2019 年 11 月 20 日
I made a mistake, I added another variable Like you said before on the top of the code diff=abs(l1(1:80)-l(1:80)); and I forgot about it.. Thank you

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeMathematics and Optimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by