arrayfun applied to integral

5 ビュー (過去 30 日間)
Olivier
Olivier 2022 年 12 月 23 日
コメント済み: Olivier 2023 年 1 月 13 日
Hello!
I would like to vectorialize a subroutine calculating an integral.
The main entry is an array that includes, in row, parameters of the function to integrate and the boundaries for the integration.
It works fine when called into a for loop, but I failed to vectorize it using arrayfun. Below is the code.
Any help to speed up this code would be most the welcome!!!
Many thanks
Olivier
function hV=change_potential_by_history_NoDOV3(t,t0,tpeak,w,past,slops,extrems)
%Matlab2022
parfor i=1:length(t)
int(i)=integrate_PSP(t(i),t0(i),tpeak(i),w(i),past(i));
end
%I WANT SOMETHING LIKE
%int=arrayfun(@integrate_PSP, t,t0,tpeak,w,past)
%
hV=sum
end
function int=integrate_PSP(t,t0,tpeak,w,past)
if t>t0
tr=t-t0;
if tr-past>0
int=integral(@(tr) w.*tr.*exp(-tr./tpeak),tr-past,tr)/past;
else
int=integral(@(tr) w.*tr.*exp(-tr./tpeak),0,tr)/tr;
end
else
int=0;
end
end
  2 件のコメント
Torsten
Torsten 2022 年 12 月 24 日
Hint:
syms x a b
f = a*x*exp(-x/b)
f = 
F = int(f)
F = 
Olivier
Olivier 2023 年 1 月 13 日
Thank!

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by