Seq Type

Constructors

Constructor Description

Seq()

Full Usage: Seq()

Returns: Seq
Returns: Seq

Static members

Static member Description

Seq.geomspace (start, stop, num, ?IncludeEndpoint)

Full Usage: Seq.geomspace (start, stop, num, ?IncludeEndpoint)

Parameters:
    start : float - start value (is included)
    stop : float - end value (by default is included)
    num : int
    ?IncludeEndpoint : bool - If false, the seq does not contain the stop value. Defaults to true.

Returns: seq<float>
Modifiers: inline

Creates a geometric seq float with values between a given interval

start : float

start value (is included)

stop : float

end value (by default is included)

num : int
?IncludeEndpoint : bool

If false, the seq does not contain the stop value. Defaults to true.

Returns: seq<float>

Seq.linspace (start, stop, num, ?IncludeEndpoint)

Full Usage: Seq.linspace (start, stop, num, ?IncludeEndpoint)

Parameters:
    start : float - start value (is included)
    stop : float - end value (by default is included )
    num : int
    ?IncludeEndpoint : bool - If false, the seq does not contain the stop value

Returns: seq<float>
Modifiers: inline

Creates an seq float with values between a given interval

start : float

start value (is included)

stop : float

end value (by default is included )

num : int
?IncludeEndpoint : bool

If false, the seq does not contain the stop value

Returns: seq<float>