Seq Type
Static members
| Static member | Description | ||
Full Usage:
Seq.geomspace (start, stop, num, ?IncludeEndpoint)
Parameters:
float
-
The start value (inclusive).
stop : float
-
The end value (by default inclusive).
num : int
-
The number of elements in the sequence. Defaults to 50.
?IncludeEndpoint : bool
-
If false, the sequence does not contain the stop value. Defaults to true.
Returns: float seq
A geometric sequence of floats between the specified interval.
Modifiers: inline |
Example
val values: obj
module Seq
from Microsoft.FSharp.Collections
|
||
Full Usage:
Seq.linspace (start, stop, num, ?IncludeEndpoint)
Parameters:
float
-
The start value (inclusive).
stop : float
-
The end value (by default inclusive).
num : int
-
The number of elements in the sequence. If not set, stepsize = 1.
?IncludeEndpoint : bool
-
If false, the sequence does not contain the stop value.
Returns: float seq
A sequence of floats between the specified interval.
Modifiers: inline |
Example
val values: obj
module Seq
from Microsoft.FSharp.Collections
|
FSharp.Stats