ArrayOfNumeric

class pyarts.arts.ArrayOfNumeric

A list of Numeric

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: pyarts.arts.ArrayOfNumeric) -> None

Empty array

  1. __init__(self: pyarts.arts.ArrayOfNumeric, size: int, cval: float) -> None

Sized same-value array

  1. __init__(self: pyarts.arts.ArrayOfNumeric, arr: List[float]) -> None

Array from list

Methods

__init__(*args, **kwargs)

Overloaded function.

append(self, arg0)

Appends a Numeric at the end of the array

clear(self)

Empty the array of all values

copy(self)

Copy the array

extend(self, arg0)

Extend the array by another array

flatten(self)

As for numpy.ndarray

index(self, arg0)

Returns the first index of a value

insert(self, arg0, arg1)

Insert a value into the array

pop(self[, i])

Pops a Numeric from the array

reverse(self)

Reverse order of array

Attributes

dtype

As for numpy.ndarray

ndim

As for numpy.ndarray

shape

As for numpy.ndarray

size

As for numpy.ndarray

value

Value of instance as numpy.ndarray