How do I plot 3D data in MATLAB?
Mostrar comentarios más antiguos
My data is of the format (x,y,z,T), where x,y and z are axes indicating a point and T is the colour value at the specified point.
Thanks
Respuestas (2)
Walter Roberson
el 7 de Nov. de 2011
pointsize = 8; %adjust at will
scatter3(x(:), y(:), z(:), pointsize, T(:));
Yi Zhang
el 13 de Abr. de 2021
1 voto
pointsize = 8; %adjust at will
scatter3(x(:), y(:), z(:), pointsize, T(:));
2 comentarios
Bruno Credidio
el 28 de Mzo. de 2022
Why did you just copy Walter Roberson's answer?
Vito Vekic
el 10 de Mayo de 2022
Based
Categorías
Más información sobre Scatter Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!