I have an x, y, and z vector that I am currently using to create a 3-D scatter plot. Is it possible to create a mesh plot using these three vectors? I would prefer to only use these vectors and not alter any of my previous code.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m a bit confused by your terminology, but I’m assuming that you have unstructured surface data –
zis the surface height for a set of positionsx, y.If you want to form a “mesh” for this data you could triangulate (via a Delauany triangulation of the positions):
If you want to visualise the “meshed” surface you can use
trimesh/trisurf: