I evaluated a function over a grid of points in three-dimensions. I would like to know what the standard notation is to define my grid of points?
In matlab notation the grid is defined by:
[x,y,z] = ndgrid(logspace(-8,8,31),logspace(-8,12,41),linspace(0,pi/4,25));
That is, x is spaced logarithmically (base 10) from $10^{-8}$ to $10^{8}$ using 31 points, y is spaced logarithmically from $10^{-8}$ to $10^{12}$ using 41 points, and z is spaced linearlly between $0$ and $\displaystyle \frac{\pi}{4}$ using 25 points.
What is the standard notation to define this grid of points?
Essentially, I'm trying to finish this sentence: "...we evaluated Eq. \ref{blah} over a grid of points in the parameter space defined by:..."
Any help would be greatly appreciated.