|
From: | Dmitri A. Sergatskov |
Subject: | Re: How to plot surface using scaled axes values, not indexes |
Date: | Wed, 10 Apr 2013 21:44:02 -0500 |
In your case it would be something along the lines:
xx = jj*spac1; yy = ii*spac2; [x,y] = meshgrid(xx,yy); surf(x,y,z)
You may want to look at xode for sombrero() as an example.
[Prev in Thread] | Current Thread | [Next in Thread] |