How do you sum concatenated variables in a system of ODES with a For Loop?

2 次查看(过去 30 天)
N = 3
% custom MATLAB function containing ODES
function dCdt = model(t,C,N)
% Inner Parameters
A = 3;
B = 2;
h = 10/N
% ODE system initialization
dCdt = zeros(N,1);
K1 = 0;
K2 = C(1)*A + B;
K3 = C(2)*A + B;
sumK = K2 + K3;
% ODES
dCdt(1) = 0;
dCdt(2) = -((C(2)-C(1))/h) + K2/sumK;
dCdt(3) = -((C(3)-C(2))/h) + K3/sumK;
end
Above you can see a static example of an ODE system with three ODEs. However, I want to automate this function so It can handle any number ("N") of ODEs. I have not found a way to include a For Loop inside the function that not only updates the number of ODEs but also the lengh of the "K" summation. Since the first ODE will always be equalt to zero, I can easialy run a for loop to define ODES from 2 to N. But, How would I write an expression that also update the concatenated summation term for any "N" value?
Thank you for your time and support!

采纳的回答

Davide Masiello
Davide Masiello 2022-3-18
编辑:Davide Masiello 2022-3-18
This should do it for any N
N = 3;
[t,X] = ode45(@(t,C)model(t,C,N),[0,2],rand(1,N));
plot(t,X)
legend('c1','c2','c3')
function dCdt = model(t,C,N)
% Inner Parameters
A = 3;
B = 2;
h = 0.1; % <-- added a values for h
% ODE system initialization
dCdt = zeros(N,1);
K = zeros(N,1);
K(2:end) = C(1:end-1)*A + B;
sumK = sum(K(2:end));
dCdt(2:end) = -((C(2:end)-C(1:end-1))/h) + K(1)/sumK;
end
  6 个评论

请先登录,再进行评论。

更多回答(1 个)

Jan
Jan 2022-3-18
编辑:Jan 2022-3-18
This is trivial, if you do not create a bunch of variables, but an array:
K(1) = 0;
K(2) = C(1) * A + B;
K(3) = C(2) * A + B;
...
sumK = sum(K);
Or without a loop:
K = C * A + B;
If K1 is 0, the last term of the ODEs will vanish in all cases, so simply omit it.

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by