Storing data in Table inside for loop

10 visualizaciones (últimos 30 días)
Seum Bin Rahman
Seum Bin Rahman el 8 de Oct. de 2019
Respondida: Jon el 8 de Oct. de 2019
I wish to create a table where one row will be added in each for loop iteration. The caclulation is correct, but I cannot store them in a table. Can I get any suggestions?
clc
clear
raw=readtable('Small.xlsx');
model=readtable('Models.xlsx');
problem=readtable('Problems.xlsx');
raw_model=raw.Models;
raw_problem=raw.Problems;
M=height(model);
P=height(problem);
for j=1:1:M
reference1=model{j,1};
A = raw(strcmp(raw_model,reference1),2);
for i=1:1:P
reference2=problem{i,1};
B = A(strcmp(A{:,1},reference2),1);
quantity=height(B);
C = [reference1,reference2,quantity]
T(i,:)=table(C)
%above line is re-written in each iteration. I wish to store data C for all iteration
end
end

Respuesta aceptada

Jon
Jon el 8 de Oct. de 2019
Looking quickly at your loop structure, it seems that if you want a row for every iteration you must count how many times you have reached the assignment statement. So you could define a counter before entering the outer loop call it iCount, and then increment it each time you reach the assignment statement and use that for indexing into the table you are creating. So something like
% initialize counter
iCount = 1;
for j=1:1:M
reference1=model{j,1};
A = raw(strcmp(raw_model,reference1),2);
for i=1:1:P
reference2=problem{i,1};
B = A(strcmp(A{:,1},reference2),1);
quantity=height(B);
C = [reference1,reference2,quantity]
T(iCount,:)=table(C)
% increment counter
iCount = iCount + 1;
end
end

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by