Return evenly spaced numbers over a specified interval.
Returns num evenly spaced samples, calculated over the interval [start, stop ].
The endpoint of the interval can optionally be excluded.
Parameters : | start : scalar
stop : scalar
num : int, optional
endpoint : bool, optional
retstep : bool, optional
|
---|---|
Returns : | samples : ndarray
step : float (only if retstep is True)
|
See also
Examples