Array Type

Constructors

Constructor Description

Array()

Full Usage: Array()

Returns: Array
Returns: Array

Static members

Static member Description

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

Full Usage: Array.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 array does not contain the stop value. Defaults to true.

Returns: float array

Creates a geometric array 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 array does not contain the stop value. Defaults to true.

Returns: float array

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

Full Usage: Array.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 array does not contain the stop value

Returns: float[]

Creates an float array 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 array does not contain the stop value

Returns: float[]