grd = unigrid(startval,stp,endval)
returns a uniformly sampled grid from the closed interval
[startval,endval], starting from startval.
stp specifies the step size. This syntax is the same as calling
startval:stp:endval.
Start value of the uniform grid, specified as a real scalar.
Data Types: double
End value of the uniform grid, specified as a real scalar.
Data Types: double
Step size, specified as a real scalar
Data Types: double
Interval type, specified as "[]", which represents a closed
interval, or "[)", which represents a semi-open
interval. Specifying a closed interval does not always cause grd to
contain the value endval. The inclusion of
endval in a closed interval also depends on the step size
stp.