필터 지우기
필터 지우기

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
Roger Vegeta
Roger Vegeta 2022년 3월 18일
Awesome! Thank you so much this works!

댓글을 달려면 로그인하십시오.

추가 답변 (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