Question: How do I make 3D surface plot from Matrix?

Hi, How to make surface plot from elements stored in matrix of form [x,y,z]? Let's suppose I have the following matrix: >A:=matrix([[1.00, 1.00, 167.76], [1.00, 2.00, 95.588], [2.00, 1.00, 500.64], [2.00, 2.00, 335.51]]); The first argument from the lists is value for X axis, the second argument is value for Y axis and the third argument is value for Z axis. For example: x=1, y=1, z=167.76 x=1, y=2, z=95.588 x=2, y=1, z=500.64 x=2, y=2, z=335.51 How to make such plot in 3D?
Please Wait...