Tensor3SetConstant
- Workspace.Tensor3SetConstant(self: pyarts.arts._Workspace, output: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Tensor3], npages: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Index]] = self.npages, nrows: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Index]] = self.nrows, ncols: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Index]] = self.ncols, value: Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Numeric], verbosity: Optional[Union[pyarts.arts.WorkspaceVariable, pyarts.arts.Verbosity]] = self.verbosity) None
Creates a tensor and sets all elements to the specified value.
The size is determined by
ncols
,nrows
etc.Author(s): Claudia Emde
- Parameters:
output (Tensor3) – Variable to initialize. [OUT]
npages (Index, optional) – Number of elements in 3rd lowest dimension of a Tensor. See
npages
, defaults toself.npages
[IN]nrows (Index, optional) – Number of rows (elements in 2nd lowest dimension) of a Matrix or Tensor. See
nrows
, defaults toself.nrows
[IN]ncols (Index, optional) – Number of columns (elements in lowest dimension) of a Matrix or Tensor. See
ncols
, defaults toself.ncols
[IN]value (Numeric) – Tensor value. [IN]
verbosity (Verbosity) – ARTS verbosity. See
verbosity
, defaults toself.verbosity
[IN]