retrievalAddPointingZa
- Workspace.retrievalAddPointingZa(self: pyarts.arts._Workspace, covmat_sx: pyarts.arts.WorkspaceVariable | pyarts.arts.CovarianceMatrix | None = self.covmat_sx, jacobian_quantities: pyarts.arts.WorkspaceVariable | pyarts.arts.ArrayOfRetrievalQuantity | None = self.jacobian_quantities, jacobian_agenda: pyarts.arts.WorkspaceVariable | pyarts.arts.Agenda | None = self.jacobian_agenda, covmat_block: pyarts.arts.WorkspaceVariable | pyarts.arts.Sparse | None = self.covmat_block, covmat_inv_block: pyarts.arts.WorkspaceVariable | pyarts.arts.Sparse | None = self.covmat_inv_block, sensor_pos: pyarts.arts.WorkspaceVariable | pyarts.arts.Matrix | None = self.sensor_pos, sensor_time: pyarts.arts.WorkspaceVariable | pyarts.arts.ArrayOfTime | None = self.sensor_time, poly_order: pyarts.arts.WorkspaceVariable | pyarts.arts.Index | None = 0, calcmode: pyarts.arts.WorkspaceVariable | pyarts.arts.String | None = 'recalc', dza: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric | None = 0.01, verbosity: pyarts.arts.WorkspaceVariable | pyarts.arts.Verbosity | None = self.verbosity) None
Same as
jacobianAddPointingZa()
but also adds a new block tocovmat_sx
using the matrices incovmat_block
andcovmat_inv_block
.If
covmat_inv_block
is non-empty, it is used as inverse for the added block which avoids its numerical computation.For number and order of elements added to
x
, seejacobianAddPointingZa()
.Author(s): Simon Pfreundschuh
- Parameters:
covmat_sx (CovarianceMatrix, optional) – Covariance matrix of a priori distribution. See
covmat_sx
, defaults toself.covmat_sx
[INOUT]jacobian_quantities (ArrayOfRetrievalQuantity, optional) – The retrieval quantities in the Jacobian matrix. See
jacobian_quantities
, defaults toself.jacobian_quantities
[INOUT]jacobian_agenda (Agenda, optional) – Pure numerical Jacobian calculations. See
jacobian_agenda
, defaults toself.jacobian_agenda
[INOUT]covmat_block (Sparse, optional) – Holds matrices used to set blocks in
covmat_sx
andcovmat_se
. Seecovmat_block
, defaults toself.covmat_block
[IN]covmat_inv_block (Sparse, optional) – Holds matrices used to set the inverse blocks in
covmat_sx
andcovmat_se
. Seecovmat_inv_block
, defaults toself.covmat_inv_block
[IN]sensor_pos (Matrix, optional) – The sensor position for each measurement block. See
sensor_pos
, defaults toself.sensor_pos
[IN]sensor_time (ArrayOfTime, optional) – The time for each measurement block. See
sensor_time
, defaults toself.sensor_time
[IN]poly_order (Index, optional) – Order of polynomial to describe the time variation of pointing off-sets. Defaults to
0
[IN]calcmode (String, optional) – Calculation method. See above. Defaults to
"recalc"
[IN]dza (Numeric, optional) – Size of perturbation to apply (when applicable). Defaults to
0.01
[IN]verbosity (Verbosity) – ARTS verbosity. See
verbosity
, defaults toself.verbosity
[IN]