Borrar filtros
Borrar filtros

How to hide the obscured portion of the lines in 3D line plot using plot3 command ??

3 visualizaciones (últimos 30 días)
I want to hide the obscured portion in a 3D line plot, similar to the attached image. Is it possible with the plot3 command or the surf/mesh command is required for this ?

Respuestas (1)

Erivelton Gualter
Erivelton Gualter el 22 de Oct. de 2018
You may check the properties of the surf function ( https://www.mathworks.com/help/matlab/ref/surf.html ). I am sure if you play a bit you can find it.
Here is a code example, but I am not sure if is it what you want.
[X,Y] = meshgrid(-5:.2:5);
Z = Y.*sin(X) - X.*cos(Y);
surf(X,Y,Z,'FaceAlpha',0.5, 'FaceColor', [1 1 1])
  1 comentario
Tan Phan
Tan Phan el 9 de Dic. de 2019
How can i change the line behind my shape to "- - -"(just like when i drawing on paper)? And when i rotate it's with rotate on toolbar it's will change to continuous line if it's in front, and line which behind will turn to "- - -".
Thank you!
Sorry for my bad English!Untitled.png

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Productos


Versión

R2014b

Community Treasure Hunt

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

Start Hunting!

Translated by