InverseVariance#
- class astropy.nddata.InverseVariance(array=None, copy=True, unit=None)[source]#
Bases:
_VariancePropagationMixin,NDUncertaintyInverse variance uncertainty assuming first order Gaussian error propagation.
This class implements uncertainty propagation for
addition,subtraction,multiplicationanddivisionwith other instances ofInverseVariance. The class can handle if the uncertainty has a unit that differs from (but is convertible to) the parentsNDDataunit. The unit of the resulting uncertainty will the inverse square of the unit of the resulting data. Also support for correlation is possible but requires the correlation as input. It cannot handle correlation determination itself.- Parameters:
- args, kwargs
see
NDUncertainty
Examples
Compare this example to that in
StdDevUncertainty; the uncertainties in the examples below are equivalent to the uncertainties inStdDevUncertainty.InverseVarianceshould always be associated with anNDData-like instance, either by creating it during initialization:>>> from astropy.nddata import NDData, InverseVariance >>> ndd = NDData([1,2,3], unit='m', ... uncertainty=InverseVariance([100, 100, 100])) >>> ndd.uncertainty InverseVariance([100, 100, 100])
or by setting it manually on the
NDDatainstance:>>> ndd.uncertainty = InverseVariance([25], unit='1/m^2', copy=True) >>> ndd.uncertainty InverseVariance([25])
the uncertainty
arraycan also be set directly:>>> ndd.uncertainty.array = 0.25 >>> ndd.uncertainty InverseVariance(0.25)
Note
The unit will not be displayed.
Attributes Summary
True:InverseVarianceallows to propagate correlated uncertainties."ivar":InverseVarianceimplements inverse variance.Attributes Documentation
True:InverseVarianceallows to propagate correlated uncertainties.correlationmust be given, this class does not implement computing it by itself.
- uncertainty_type#
"ivar":InverseVarianceimplements inverse variance.