Nevermind, I think I found the solution. Looks like all I need to do is put my x-coordinates in a single column matrix (x_axis_values) and my y-coordinates in another single column matrix (y_axis_values) and then put all of my (x,y) coordinates in the m*n matrix (plot_1_values). Then I use the...
I have a m*n matrix of values called plot_1. The matrix contains a series of values intended to be plotted at specified (x,y) coordinates. I am trying to plot the matrix using the surf function.
My problem is that the plot comes up with the axes corresponding to the indexing location (row...