ARTS
2.3.1285(git:92a29ea9-dirty)
|
Stuff related to generating y-data from raw data. More...
Go to the source code of this file.
Namespaces | |
linalg | |
Functions | |
constexpr Numeric | calibration (Numeric pc, Numeric pa, Numeric ph, Numeric tc, Numeric th) noexcept |
Computes the linear calibration formula. More... | |
constexpr Numeric | systemtemp (Numeric pc, Numeric ph, Numeric tc, Numeric th) noexcept |
Computes the linear receiver temperature formula. More... | |
void | linalg::avg (VectorView y, const ArrayOfVector &ys, const Index start=0, const Index end=-1) |
Compute the average of the ranged ys. More... | |
void | linalg::std (VectorView std, const Vector &y, const ArrayOfVector &ys, const Index start=0, const Index end=-1) |
Compute the standard deviation of the ranged ys. More... | |
void | linalg::var (VectorView var, const Vector &y, const ArrayOfVector &ys, const Index start=0, const Index end=-1) |
Compute the variance of the ranged ys. More... | |
void | linalg::cov (MatrixView cov, const Vector &y, const ArrayOfVector &ys, const Index start=0, const Index end=-1) |
Compute the covariance matrix of the ranged ys. More... | |
Numeric | linalg::median (const ConstVectorView v, const ArrayOfIndex &pos=ArrayOfIndex{}) |
Get the median of the vector in the range. More... | |
|
noexcept |
Computes the linear calibration formula.
[in] | pc | , linear power of cold load; cold count |
[in] | pa | , linear power of atmospheric measurement; atmospheric count |
[in] | ph | , linear power of got load; hot count |
[in] | tc | , cold load temperature |
[in] | th | , hot load temperature |
Definition at line 44 of file raw.h.
Referenced by yColdAtmHot().
Computes the linear receiver temperature formula.
[in] | pc | , linear power of cold load; cold count |
[in] | ph | , linear power of got load; hot count |
[in] | tc | , cold load temperature |
[in] | th | , hot load temperature |
Definition at line 59 of file raw.h.
Referenced by yColdAtmHot().