Header menu logo FSharp.Stats

List Type

Constructors

Constructor Description

List()

Full Usage: List()

Returns: List
Returns: List

Static members

Static member Description

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

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

Parameters:
    start : 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

Creates a geometric list of floats with values between a given interval

start : 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

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

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

Parameters:
    start : 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

Creates an float list with values between a given interval

start : 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

Type something to start searching.