Azzera filtri
Azzera filtri

Table Name in a loop

1 visualizzazione (ultimi 30 giorni)
Davin
Davin il 22 Giu 2015
Commentato: Davin il 22 Giu 2015
Hello,
I am struggling with this fairly simple loop.
I have an an array with years like the following :
2012
2012
2012
2013
2013
2014
2014
2015
In the loop i want to create a table for each year, but I am not able to do it in a proper way.
I did the following,
s = unique(array(:,1))
v = size(s,1)
for i = 1 :v
if certain conditions
TableName = sum all values in year concerned year.
end
end
So my question is very simple, how to make this TableName(should contain the year, for example Table2013) change to the year where the conditions is met. i tried to do something like
strcat('Table',num2str(array(i))) = sum all values in year concerned year.
This does not work at all.
Thank you very much
D

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 22 Giu 2015
Modificato: Azzi Abdelmalek il 22 Giu 2015
data=[ 2012 2
2012 6
2012 9
2013 1
2013 8
2014 9
2014 9
2015 9]
[ii,jj,kk]=unique(data(:,1))
out=[ii accumarray(kk,data(:,2))]
  1 Commento
Davin
Davin il 22 Giu 2015
Hello Azzi,
Thanks for your answer. Even if it was not exactly what I wanted to know( my question was more how to have a changing table name in a loop), you answer gave me some kind of solution to my issue. Thanks again for the prompt response.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by