List Type
Static members
| Static member | Description |
Full Usage:
List.geomspace (start, stop, num, ?IncludeEndpoint)
Parameters:
float
-
start value (is included)
stop : float
-
end value (by default is included)
num : int
-
sets the number of elements in the list. Defaults to 50.
?IncludeEndpoint : bool
-
If false, the list does not contain the stop value. Defaults to true.
Returns: float list
|
|
Full Usage:
List.linspace (start, stop, num, ?IncludeEndpoint)
Parameters:
float
-
start value (is included)
stop : float
-
end value (by default is included )
num : int
-
sets the number of elements in the list. If not set, stepsize = 1.
?IncludeEndpoint : bool
-
If false, the list does not contain the stop value
Returns: float list
|
|
FSharp.Stats