StdDevUncertainty

class astropy.nddata.StdDevUncertainty(array=None, copy=True, unit=None)[ソース]

ベースクラス: astropy.nddata.nduncertainty._VariancePropagationMixin, astropy.nddata.nduncertainty.NDUncertainty

一次ガウス誤差伝播の標準偏差不確実度を仮定する.

This class implements uncertainty propagation for addition, subtraction, multiplication and division with other instances of StdDevUncertainty. The class can handle if the uncertainty has a unit that differs from (but is convertible to) the parents NDData unit. The unit of the resulting uncertainty will have the same unit as the resulting data. Also support for correlation is possible but requires the correlation as input. It cannot handle correlation determination itself.

パラメータ
パラメータ、パラメータ:

NDUncertainty

実例.

StdDevUncertainty 終始しなければならない NDData -LIKEインスタンス、初期化中にそれを作成することによって実現できます:

>>> from astropy.nddata import NDData, StdDevUncertainty
>>> ndd = NDData([1,2,3], unit='m',
...              uncertainty=StdDevUncertainty([0.1, 0.1, 0.1]))
>>> ndd.uncertainty  
StdDevUncertainty([0.1, 0.1, 0.1])

あるいはそれを使って NDData 例::

>>> ndd.uncertainty = StdDevUncertainty([0.2], unit='m', copy=True)
>>> ndd.uncertainty  
StdDevUncertainty([0.2])

不確実性 array 直接設定することもできます:

>>> ndd.uncertainty.array = 2
>>> ndd.uncertainty
StdDevUncertainty(2)

注釈

この装置は表示されないだろう。

属性要約

supports_correlated \

TrueStdDevUncertainty 関連する不確実性を伝播することを可能にする。

uncertainty_type \

"std"StdDevUncertainty 標準偏差を実施する。

属性文書

supports_correlated

TrueStdDevUncertainty 関連する不確実性を伝播することを可能にする。

correlation このクラス自体が計算を実現しないということを提示しなければならない。

uncertainty_type

"std"StdDevUncertainty 標準偏差を実施する。