I have created groups (clusters) on a plot using mask command but now I want to list those groups as separate columns in sheet. Can someone pls help me with the code to do so?
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Hoping for an answer. Thanks in advance for your help. 
clear all;
close;
clc;
filename = 'Testfile7.xlsx';
T = readtable(filename, 'VariableNamingRule', 'preserve');
ns = T.Id; nd = T.Id_1;
mask = nd ~= 0;
s = ns(mask); d = nd(mask);
G = graph(s, d);
plot(G)
bins = conncomp(G)
I am hoping to have some code between the 8th and 10th line to get the groups or clusters in the form of columns which are generated and can be seen Testimage.fig file and the Testimage.png file.
Regards
J
1 comentario
  Image Analyst
      
      
 el 15 de Sept. de 2021
				Give an example of what you'd want for the first few clusters.  What would your resulting array look like?
Respuestas (0)
Ver también
Categorías
				Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

