Hello everyone,
I have 3 datas in space: x_sec is 97x10, y_sec is 97x10 and z_sec is 1x10 matrices. When I use the plot3(x_sec,y_sec,z_sec) command I get line plotted in 3d. But I want a surface plot using surf. How can I achieve that?
This is a proplleler with a twist.

 Respuesta aceptada

Star Strider
Star Strider el 24 de Abr. de 2021

0 votos

One option might be to use repmat
z_sec2 = repmat(z_sec, 97, 1);
then —
figure
surf(x_sec,y_sec,z_sec2)
I have no idea how well that will work because I do not have the data, so you will have to experiment with it.

2 comentarios

Serdar SOYER
Serdar SOYER el 24 de Abr. de 2021
It worked perfectly, thank you so much!
Star Strider
Star Strider el 24 de Abr. de 2021
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Versión

R2021a

Preguntada:

el 24 de Abr. de 2021

Comentada:

el 24 de Abr. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by