Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个由一组 X、Y、Z 点表示的 3D 对象。如果我使用命令 scatter3(X, Y, Z) 我得到点,但我希望它被“插值”,以便我有一个平滑的 3D 对象。有没有一种简单的方法可以做到这一点?
点云示例:
你需要在点之间进行三角测量
TRI = delaunay( X, Y, Z ); trisurf( TRI, X, Y, Z );