how to display scatter in GUI?

Respuestas (1)

Tamir Suliman
Tamir Suliman el 28 de Feb. de 2018

0 votos

do you need to plot it use the scatter3 command please post your code Reference below :
https://www.mathworks.com/help/matlab/ref/scatter3.html

1 comentario

Muhammad RSMY
Muhammad RSMY el 28 de Feb. de 2018
Editada: Muhammad RSMY el 28 de Feb. de 2018
Thanks for your comment Tamir Suliman
the code is working fine to display scatter3, but the problem when I built GUI its give an error
here is code
D = indata{1};
out3 = reshape(D,[mm,nn,k]);
idx = find(out3);
[X, Y, Z] = ind2sub(size(out3), idx);
pointsize = 40;
scatter3(X(:), Y(:), Z(:), pointsize, out3(idx),'square','filled');
colormap jet
colorbar

Iniciar sesión para comentar.

Categorías

Etiquetas

Preguntada:

el 28 de Feb. de 2018

Editada:

el 28 de Feb. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by