ArrayOfTensor4

class pyarts.arts.ArrayOfTensor4(*args, **kwargs)

A list of Tensor4

Overview

Method

append()

Append arg to the end of the list.

Method

clear()

Remove all items from list.

Method

count()

Return number of occurrences of arg.

Method

extend()

Extend self by appending elements from arg.

Method

insert()

Insert object arg1 before index arg0.

Method

pop()

Remove and return item at index (default last).

Method

readxml()

Read variable from file

Method

remove()

Remove first occurrence of arg.

Method

savexml()

Saves variable to file

Static Method

fromxml()

Create variable from file

Operator

__contains__()

__contains__(self, arg: object, /) -> bool

Operator

__delitem__()

__delitem__(self, arg: slice, /) -> None

Operator

__eq__()

__eq__(self, arg: pyarts.arts.ArrayOfTensor4, /) -> bool

Operator

__ge__()

Return self>=value.

Operator

__getitem__()

__getitem__(self, arg: slice, /) -> pyarts.arts.ArrayOfTensor4

Operator

__gt__()

Return self>value.

Operator

__hash__()

Return hash(self).

Operator

__iter__()

__iter__(self) -> collections.abc.Iterator[pyarts.arts.Tensor4]

Operator

__le__()

Return self<=value.

Operator

__len__()

__len__(self) -> int

Operator

__lt__()

Return self<value.

Operator

__ne__()

__ne__(self, arg: pyarts.arts.ArrayOfTensor4, /) -> bool

Operator

__setitem__()

__setitem__(self, arg0: slice, arg1: pyarts.arts.ArrayOfTensor4, /) -> None

Constructors

__init__(self) None
__init__(self, arg: pyarts.arts.ArrayOfTensor4) None
__init__(self, arg: collections.abc.Iterable[pyarts.arts.Tensor4], /) None
__init__(self) None
__init__(self, arg: pyarts.arts.ArrayOfTensor4) None

Overloaded function.

  1. __init__(self) -> None

Default constructor

  1. __init__(self, arg: pyarts.arts.ArrayOfTensor4) -> None

Copy constructor

  1. __init__(self, arg: collections.abc.Iterable[pyarts.arts.Tensor4], /) -> None

Construct from an iterable object

Methods

append(self, arg: pyarts.arts.Tensor4, /) None

Append arg to the end of the list.

clear(self) None

Remove all items from list.

count(self, arg: pyarts.arts.Tensor4, /) int

Return number of occurrences of arg.

extend(self, arg: pyarts.arts.ArrayOfTensor4, /) None

Extend self by appending elements from arg.

insert(self, arg0: int, arg1: pyarts.arts.Tensor4, /) None

Insert object arg1 before index arg0.

pop(self, index: int = -1) pyarts.arts.Tensor4

Remove and return item at index (default last).

readxml(self, file: str) None

Read variable from file

Parameters:

file (str) – A file that can be read

On Error:

Throws RuntimeError for any failure to read

remove(self, arg: pyarts.arts.Tensor4, /) None

Remove first occurrence of arg.

savexml(self, file: str, type: str = 'ascii', clobber: bool = True) None

Saves variable to file

Parameters:
  • file (str) – The path to which the file is written. Note that several of the options might modify the name or write more files

  • type (str) – Type of file to save (ascii. zascii, or binary)

  • clobber (bool) – Overwrite existing files or add new file with modified name?

On Error:

Throws RuntimeError for any failure to save

Static Methods

fromxml(file: str) pyarts.arts.ArrayOfTensor4

Create variable from file

Parameters:

file (str) – A file that can be read

On Error:

Throws RuntimeError for any failure to read

Operators

__contains__(self, arg: pyarts.arts.Tensor4, /) bool
__contains__(self, arg: object, /) bool
__delitem__(self, arg: int, /) None
__delitem__(self, arg: slice, /) None
__eq__(self, arg: pyarts.arts.ArrayOfTensor4, /) bool
__ge__(value, /)

Return self>=value.

__getitem__(self, arg: int, /) pyarts.arts.Tensor4
__getitem__(self, arg: slice, /) pyarts.arts.ArrayOfTensor4
__gt__(value, /)

Return self>value.

__hash__()

Return hash(self).

__iter__(self) collections.abc.Iterator[pyarts.arts.Tensor4]
__le__(value, /)

Return self<=value.

__len__(self) int
__lt__(value, /)

Return self<value.

__ne__(self, arg: pyarts.arts.ArrayOfTensor4, /) bool
__setitem__(self, arg0: int, arg1: pyarts.arts.Tensor4, /) None
__setitem__(self, arg0: slice, arg1: pyarts.arts.ArrayOfTensor4, /) None