Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to construct a geometry from points in matlab

Status
Not open for further replies.

Hibru

Bioengineer
Joined
Nov 17, 2004
Messages
3
Location
BE
dears
I generated points in 3D using matlab.And I want to generate a 3D geometry by connecting nearby points with a line.
Do you have some tips to tell me how to proceed?

Regards
 
Place the x-, y- and z-coordinates in separate variables and use the [tt]plot3[/tt] command.
Code:
plot3(X,Y,Z)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top