MATLAB如何用离散三维坐标画光滑三维曲面?

如题,原数据为
Matrix=[x, y, z]
=
[
1 2 3
3 4 5
2 1 5
1 8 5
];
also, size=[100, 3];

如何完成?
help里面介绍帮不上忙
meshgrid plus surf?

example x=[1  2   3];
            y=[2  3   4];
[X,Y]=meshgrid(x,y);
Z=[ 1   2   3;
       4   5   6;
      7    8    9];
surf(X,Y,Z)

I have sent matlab to you. There are many examples in chapter 6.
没有哪一个参考系相对于其它参考系是特殊的.

TOP

问题已经解决,不用meshgrid。
还是谢谢楼上的

TOP