I have a .csv data set that is 10x22 surface data and i'd like to convert it to XYZ point cloud. What is the best way to do this in Matlab?
John Michell answered .
2025-11-20
vector_of_x = as appropriate vector_of_y = as appropriate [X, Y] = meshgrid(vector_of_x, vector_of_y); points = [X(:), Y(:), z(:)]; ptCloud = pointcloud(points);