plotting a 3d graph for a 3d table
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ammar ansari
el 30 de Abr. de 2024
Comentada: Voss
el 30 de Abr. de 2024
I have a table and I want to plot a 3d graph for that.
0 comentarios
Respuesta aceptada
Voss
el 30 de Abr. de 2024
M = readmatrix('file.xlsx')
x = M(2:end,2);
y = M(1,3:end);
z = M(2:end,3:end);
figure
surf(x,y,z.')
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!