Storing data from a triple for loop in a matrix

조회 수: 2 (최근 30일)
Jesper Schreurs
Jesper Schreurs 2021년 10월 29일
댓글: Star Strider 2021년 10월 29일
Hello! Can someone help me with the following quation?
I want to make a matrix with outputs of a triple for loop. The code is as follows.
First there is a odefunction that is used in the script.
The the script with the function handle:
for i = 1:3 % The for loops runs 27 times because there are 3^3 options.
for j = 1:3
for k = 1:3
odefunc = @(t,y) odeFunction(t,y,Cint, Cwall, R1(i), R2(j), Rwin(k))
% integrate the system of differential equations from tspan(1) to
% tspan(2) with initial conditions y0
[t,y] = ode45(odefunc, tspan, y0);
end
This computes different outputs with 27 possible input options. I want to store these outputs in matrix of
K = zeros(27, 1440);

채택된 답변

Star Strider
Star Strider 2021년 10월 29일
Store the intermediate results in cell arrays, and sort the results out later —
for i = 1:3 % The for loops runs 27 times because there are 3^3 options.
for j = 1:3
for k = 1:3
odefunc = @(t,y) odeFunction(t,y,Cint, Cwall, R1(i), R2(j), Rwin(k))
% integrate the system of differential equations from tspan(1) to
% tspan(2) with initial conditions y0
[t,y] = ode45(odefunc, tspan, y0);
tc{i,j,k} = t;
yc{i,j,k} = y;
end
end
end
If ‘Cwall’ has more than 2 elements, all the ‘t’ vectors and ‘y’ matrices will have the same row dimension, however it is still easier to save (and later address) the results as cell arrays rather than as concatenated matrices.
.
  댓글 수: 4
Jesper Schreurs
Jesper Schreurs 2021년 10월 29일
Thanks a lot man! You helped me very good.
Star Strider
Star Strider 2021년 10월 29일
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

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

추가 답변 (1개)

Jon
Jon 2021년 10월 29일
편집: Jon 2021년 10월 29일
It isn't completely clear from your description, but assuming the output you want to save is the vector y from each diff eq solution, and that this always has 1440 elements, you could do this:
K = zeros(27,1440); % preallocate
count = 0;
for i = 1:3
for j = 1:3
for k = 1:3
% increment loop counter
count = count + 1
.
.
.
[t,y] = ode45(odefunc, tspan, y0);
K(count,:) = y(:)'; % use y(:)' to make sure it is a row
end
end
end
  댓글 수: 1
Jesper Schreurs
Jesper Schreurs 2021년 10월 29일
Thanks for the quick reaction!
The ode function is as follows:
For the output in the matrix K, I only want the y(2) value that the function computes.
function [dydt] = odeFunction(t,y,Cint, Cwall, R2, R1, Rwin)
% set of ordinary differential equations
% input: Cint - constant
% Cwall - constant
% R2 - constant
% R1 - constant
% Rwin - constant
% t - the time variable
% y - the state variable
%output: dydt - the set of equations
% initialize the set of equations
dydt = zeros(2,1);
Tamb = dlmread("Temperaturesummer22.dat"); % Reads the temprature dataset
n = linspace(0,1440,1441) ; % The amount of minutes
Tamb = interp1(n, Tamb,t); % Interpolates the time and temprature data.
% defindlmread("Temperaturesummer22.dat") the set of equations
dydt(1) = ((Tamb- y(1))/(Cwall * R2)) + ((y(2)- y(1))/(Cwall * R1))
dydt(2) = ((y(1) - y(2))/(Cint * R1)) + ((Tamb - y(2))/ (Cint * Rwin))
end
% The script setup:
% The constant inputs which are inputs in the ode function.
Cint = 10000;
Cwall = 500;
R1 = [0.05 0.1 0.4];
R2 = [0.04 0.08 0.3];
Rwin = [0.03 0.1 0.5];
% time dependent window
tspan = 0:1:1440; % calculate from t= 0 and t=1440;
% can define the time interval steps
% i.e. tspan = linspace(0,1440,1441);
y0 = [20;18]; % initial conditions for temprature
K = zeros(27, 1440);
% Here will be the triple for loop.
% Every output y(2) has 1441 rows and there are 27 different outputs.
% I want to have all these outputs stored in a matrix, but I don not know
% how to do it because there is a triple for loop.

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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by