surf plot from text file
Mostrar comentarios más antiguos
i have text with data an di dont know how to create a surface plot using surf function.
load('exportfilecst4.txt');
X = exportfilecst4(:,1);
Y = exportfilecst4(:,2);
z1 = exportfilecst4(:,4);
z2 = exportfilecst4(:,5);
z3 = exportfilecst4(:,6);
Z = z3;
plot3(X,Y,Z,'*','markerSize',3);
grid on
this is my code right now
i have attach the text file bellow
can anyone change it to surface plot
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Downloads 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!
