retrievalErrorsExtract
- Workspace.retrievalErrorsExtract(self: pyarts.arts._Workspace, retrieval_eo: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector | None = self.retrieval_eo, retrieval_ss: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector | None = self.retrieval_ss, covmat_so: pyarts.arts.WorkspaceVariable | pyarts.arts.Matrix | None = self.covmat_so, covmat_ss: pyarts.arts.WorkspaceVariable | pyarts.arts.Matrix | None = self.covmat_ss, verbosity: pyarts.arts.WorkspaceVariable | pyarts.arts.Verbosity | None = self.verbosity) None
Extract retrieval error from covariance matrices.
Extracts the error estimates for the retrieved quantities from the covariance matrices for the error due to measurement noise
covmat_soand the error due to limited resolution of the observation systemcovmat_ssand stores them in the vectorsretrieval_eoandretrieval_ss, respectively. To etract these errors, first the convariance matrices of which the errors should be extracted have to be computed using the WSMscovmat_soCalc()andcovmat_ssCalc()or set to be empty in order to be ignored. Note, however, that this will also set the corresponding error vector to be empty.Author(s): Simon Pfreundschuh
- Parameters:
retrieval_eo (Vector, optional) – The estimated error in the retrieval due to uncertainty in the observations. See
retrieval_eo, defaults toself.retrieval_eo[OUT]retrieval_ss (Vector, optional) – The estimated error in the retrieval due to limited resolution of the. See
retrieval_ss, defaults toself.retrieval_ss[OUT]covmat_so (Matrix, optional) – Covariance matrix describing the retrieval error due to uncertainties of. See
covmat_so, defaults toself.covmat_so[IN]covmat_ss (Matrix, optional) – Covariance matrix describing the retrieval error due to smoothing. See
covmat_ss, defaults toself.covmat_ss[IN]verbosity (Verbosity) – ARTS verbosity. See
verbosity, defaults toself.verbosity[IN]