How to integrate integral(i​ntegral(co​s(t),-10,t​) ,t1,t2)

1 回表示 (過去 30 日間)
Ole
Ole 2016 年 3 月 23 日
コメント済み: Ole 2016 年 3 月 23 日
How to integrate numerically Z(t1,t2) ? My function is more complicated than cos but is analytical.
integral(integral(cos(t),-10,t) ,t1,t2)
F = @(t) cos(t);
A = @(t) -integral(F,-10,t)
Z = @(t1,t2) - integral(A,t1,t2)
Z(0,1)

採用された回答

Justin Griffiths
Justin Griffiths 2016 年 3 月 23 日
The intermediate integration is numerical in nature so the operation needs to be vectorized. Unfortunately the integral function does not handle vectors for integral limits. Try the following
F = @(t) cos(t);
A = @(t) arrayfun(@(s)-integral(F,-10,s),s);
Z = @(t1,t2) -integral(A,t1,t2);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by