Storing data from a triple for loop in a matrix

11 views (last 30 days)
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);

Accepted Answer

Star Strider
Star Strider on 29 Oct 2021
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 Comments
Star Strider
Star Strider on 29 Oct 2021
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Sign in to comment.

More Answers (1)

Jon
Jon on 29 Oct 2021
Edited: Jon on 29 Oct 2021
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 Comment
Jesper Schreurs
Jesper Schreurs on 29 Oct 2021
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.

Sign in to comment.

Categories

Find more on MATLAB in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!