matlab - Surface on 3d points -
i have lot of points on 3d space, such as:
[177,867390625000, -173,140625000000, -149,666937500000], [202,519976190476, -163,001285714286, -77,1924761904762], [175,576234375000, -148,980296875000, -135,779421875000], [244,798280000000, -210,332080000000, -177,070066666667], [240,668416666667, -156,703083333333, -135,545016666667]
and create surface plots these points.
the format of data not clear. if each line coordinate, is
x = [177, 173, ...] y = [-77, ...]
then, can plot them
plot(x, y, z, '.b')
where dot means "plot them individual points, without connecting them lines". first, remove commas in numbers (replace them dots if decimal points)
Comments
Post a Comment