I would like to determine the curvature of a surface given a set of (x,y,z) co-ordinates on an irregular spaced grid.
How can I plot this data? As I understand it the only way to plot 3D surface is to have 1 regularly spaced variable and use matrices. Anyways around this? If anyone has ideas or suggestions please let me know.
I presume you have a set of (x,y,z) data points and want to determine the curvature of the surface represented by these points. In order to do this you will need to find the equation of a surface that fits your (x,y,z) data points. If you know the equation to the surface that will best represent your data, you can peform a fit to all the points. If not, you can compute the curvature of a surface at a given point by fitting a polynomial surface to all the neighboring points, and then compute the differential properties directly from the polynomial suface fit.