measurement_jacobianTransformations
- Workspace.measurement_jacobianTransformations(self, measurement_jacobian: pyarts3.arts.Matrix | None = None, absorption_bands: pyarts3.arts.AbsorptionBands | None = None, atmospheric_field: pyarts3.arts.AtmField | None = None, jacobian_targets: pyarts3.arts.JacobianTargets | None = None, measurement_sensor: pyarts3.arts.ArrayOfSensorObsel | None = None, model_state_vector: pyarts3.arts.Vector | None = None, subsurface_field: pyarts3.arts.SubsurfaceField | None = None, surface_field: pyarts3.arts.SurfaceField | None = None) None
Apply all transformations to the Jacobian related to states in
model_state_vectorFromData()
Wrapper calling Methods (in order):
Equivalent (mostly) Python code:
1ws = pyarts.Workspace() 2 3# ... 4 5 ws.measurement_jacobianAtmosphereTransformation() 6 ws.measurement_jacobianSurfaceTransformation() 7 ws.measurement_jacobianSubsurfaceTransformation() 8 ws.measurement_jacobianBandTransformation() 9 ws.measurement_jacobianSensorTransformation()
Author: Richard Larsson
- Parameters:
measurement_jacobian (Matrix, optional) – The first order partial derivatives of the
measurement_vector
. Seemeasurement_jacobian
, defaults toself.measurement_jacobian
[INOUT]absorption_bands (AbsorptionBands, optional) – Bands of absorption lines for line-by-line (LBL) calculations. See
absorption_bands
, defaults toself.absorption_bands
[IN]atmospheric_field (AtmField, optional) – An atmospheric field in ARTS. See
atmospheric_field
, defaults toself.atmospheric_field
[IN]jacobian_targets (JacobianTargets, optional) – A list of targets for the Jacobian Matrix calculations. See
jacobian_targets
, defaults toself.jacobian_targets
[IN]measurement_sensor (ArrayOfSensorObsel, optional) – A list of sensor elements. See
measurement_sensor
, defaults toself.measurement_sensor
[IN]model_state_vector (Vector, optional) – A state vector of the model. See
model_state_vector
, defaults toself.model_state_vector
[IN]subsurface_field (SubsurfaceField, optional) – The sub0surface field describes the sub-surface properties. See
subsurface_field
, defaults toself.subsurface_field
[IN]surface_field (SurfaceField, optional) – The surface field describes the surface properties. See
surface_field
, defaults toself.surface_field
[IN]