I'm analyzing the maximum load for a mechanism in 2D-space and want to plot the load capacity for a certain point at different positions inside the working area and figured a contour plot with the position in x and y and the load as the color range would be appropriate.
I have the coordinates and load as functions of three variables in 3D matrices:
X = [x(alpha),x(beta),x(ext)]
Y = [y(alpha),y(beta),y(ext)]
F = [F(alpha),F(beta),F(ext)]
How would I arrange this data in order to plot it in any meaningful way? This is probably very basic, but I'm stuck and just can't see it. Any help is appreciated.