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
    ?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
?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
    ?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
?IncludeEndpoint : bool

If false, the list does not contain the stop value

Returns: float list