Tensor3

class pyarts.arts.Tensor3

A 3 dimensional array of Numeric

This class is mostly compatible with numpy arrays including numpy math. The data can be accessed without copy using np.array(x, copy=False) or via x.value

Workspace methods that can generate Tensor3

Workspace methods that require Tensor3

Workspace variables of type Tensor3

__init__(*args, **kwargs)

Overloaded function.

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

Default tensor

  1. __init__(self: pyarts.arts.Tensor3, ten3: List[List[List[Union[float, int]]]]) -> None

From list equivalent

  1. __init__(self: pyarts.arts.Tensor3, val: pyarts.arts.Tensor3) -> None

Copy instance

  1. __init__(self: pyarts.arts.Tensor3, wsv: pyarts.arts.WorkspaceVariable) -> None

Automatic conversion from a workspace variable

Methods

__init__(*args, **kwargs)

Overloaded function.

flatten(self)

As for numpy.ndarray

fromxml(file)

Create Tensor3 from file

readxml(self, file)

Read Tensor3 from file

savexml(self, file[, type, clobber])

Saves Tensor3 to file

Attributes

dtype

As for numpy.ndarray

ndim

As for numpy.ndarray

shape

As for numpy.ndarray

size

As for numpy.ndarray

value

ndarray Data array