Save different values of the same table from a loop

1 visualizzazione (ultimi 30 giorni)
I have a table which is created from a loop.Problem is that overwrites the previous table for diffrent k and I dont know how to fix it.
for k=1:length(centroid_clust)
separate_areas(1,k)=[area_clust(k).Area];
c=[centroid_clust(k).Centroid];
text(c(1), c(2), sprintf('%d', k));
Cluster(k,:)=k;
Area_of_cluster(k,:)=area_clust(k).Area;
Eccentricity_of_cluster(k,:)=eccentricity_clust(k).Eccentricity ;
Euler_of_cluster(k,:)=euler_clust(k).EulerNumber;
Perimeter_of_cluster(k,:)=perimeter_clust(k).Perimeter;
Orientation_of_cluster(k,:)=orientation_clust(k).Orientation;
T2= table(Cluster,Area_of_cluster,Eccentricity_of_cluster,Euler_of_cluster,Perimeter_of_cluster,Orientation_of_cluster)
end

Risposta accettata

KSSV
KSSV il 8 Feb 2019
Modificato: KSSV il 8 Feb 2019
T2 = cell(length(centroid_clust),1)
for k=1:length(centroid_clust)
separate_areas(1,k)=[area_clust(k).Area];
c=[centroid_clust(k).Centroid];
text(c(1), c(2), sprintf('%d', k));
Cluster(k,:)=k;
Area_of_cluster(k,:)=area_clust(k).Area;
Eccentricity_of_cluster(k,:)=eccentricity_clust(k).Eccentricity ;
Euler_of_cluster(k,:)=euler_clust(k).EulerNumber;
Perimeter_of_cluster(k,:)=perimeter_clust(k).Perimeter;
Orientation_of_cluster(k,:)=orientation_clust(k).Orientation;
T2{k}= table(Cluster,Area_of_cluster,Eccentricity_of_cluster,Euler_of_cluster,Perimeter_of_cluster,Orientation_of_cluster)
end
  4 Commenti
DIMITRIOS THEODOROPOULOS
DIMITRIOS THEODOROPOULOS il 8 Feb 2019
i want to save k T2 tables ...This was my question....
so is it possible???
KSSV
KSSV il 8 Feb 2019
you can save into mat file easily....if all yhe tables are of same size, you can merge them into single table and use writetable. If the tables are of different size, you can write them into different excel sheets using writetable

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Tables in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by