Borrar filtros
Borrar filtros

How to generate surface from scatter3 with xyz coordinates and specified color

33 visualizaciones (últimos 30 días)
Hi, I have generated a 3D scatter plot using scatter3 with XYZ coordinates (all column vectors) and a separate color column vector
>> figure;scatter3(tbl.pred1,tbl.pred2,tbl.pred3,200,tbl.dv,'filled');color=colorbar;color.Label.String='DV';colormap jet;hold on;xlabel('predictor 1');ylabel('predictor 2');zlabel('predictor 3');set(gca,'FontSize',20);
Which produces an expected 3d scatter plot:
I would like to turn this into a 3d surface but I'm stuck on how. Would very much appreciate any guidance. Thank you!

Respuestas (1)

Matt J
Matt J el 24 de Oct. de 2022
Perhaps as follows,
[x,y,z]=deal(tbl.pred1,tbl.pred2,tbl.pred3);
T = delaunay(x,y);
trisurf(T,x,y,z)

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by