Borrar filtros
Borrar filtros

how to plot cell ?

1 visualización (últimos 30 días)
Tomas
Tomas el 12 de Nov. de 2013
Comentada: Tomas el 12 de Nov. de 2013
I have for example cell {1x1 cell} {1x7 cell} {1x2 cell}, each cell is cluster.
I have to plot each cluster, how to plot together in one figure ?
Thanks
  2 comentarios
Walter Roberson
Walter Roberson el 12 de Nov. de 2013
Editada: Walter Roberson el 12 de Nov. de 2013
What is the data structure inside the cells? For example is it an array of XYZ coordinates? Are you wanting to scatter3() based on the coordinates?
Tomas
Tomas el 12 de Nov. de 2013
ans = Z{1}
[1x3 double]
ans = Z{2}
Columns 1 through 6
[1x3 double] [1x3 double] [1x3 double] [1x3 double] [1x3 double] [1x3 double]
Column 7
[1x3 double]
ans = Z{3}
[1x3 double] [1x3 double]
I want to differentiate the color each Z{1} Z{2} Z{3}
Thanks

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 12 de Nov. de 2013
pointsize = 10;
nclust = length(Z);
colorfrac = linspace(0, 1, nclust);
clustcoords = cellfun( @cell2mat, Z, 'Uniform', 0 );
for k = 1 : length(clustcoords)
XYZ = clustcoords{k};
scatter3(XYZ(:,1), XYZ(:,2), XYZ(:,3), pointsize, colorfrac(k));
hold on
end
  3 comentarios
Walter Roberson
Walter Roberson el 12 de Nov. de 2013
nclust = length(Z);
thismap = copper(nclust); %or pink or flag or hot or ...
clustcoords = cellfun( @cell2mat, Z, 'Uniform', 0 );
for k = 1 : length(clustcoords)
XYZ = clustcoords{k};
plot3(XYZ(:,1), XYZ(:,2), XYZ(:,3), thismap(k,:));
hold on
end
Tomas
Tomas el 12 de Nov. de 2013
??? Error using ==> plot3 Data must be a single matrix Y or a list of pairs X,Y
Error in ==> knew at 107 plot3(XYZ(:,1), XYZ(:,2), XYZ(:,3), thismap(k,:));

Iniciar sesión para comentar.

Categorías

Más información sobre Surface and Mesh Plots 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