Save different values of the same table from a loop
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
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
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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Tables 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!