Static member | Description |
Full Usage:
Array.geomspace (start, stop, num, ?IncludeEndpoint)
Parameters:
float
-
start value (is included)
stop : float
-
end value (by default is included)
num : int
?IncludeEndpoint : bool
-
If false, the array does not contain the stop value. Defaults to true.
Returns: float array
|
|
Full Usage:
Array.linspace (start, stop, num, ?IncludeEndpoint)
Parameters:
float
-
start value (is included)
stop : float
-
end value (by default is included )
num : int
?IncludeEndpoint : bool
-
If false, the array does not contain the stop value
Returns: float[]
|
|