named-tuples¶
A number of namedtuple class are used in GTC to return the results of calculations.
- class VarianceAndDof(cv, df)¶
namedtuple: Values of the variance and degrees of freedom.- cv¶
Variance.
- class VarianceCovariance(rr, ri, ir, ii)¶
namedtuple: Values of variance-covariance for a complex quantity
- class StandardUncertainty(real, imag)¶
namedtuple: Standard uncertainty values of a complex quantity
- class StandardDeviation(real, imag)¶
namedtuple: Standard deviation values of a complex quantity
- class ComponentOfUncertainty(rr, ri, ir, ii)¶
namedtuple: Component of uncertainty values for a complex quantity
- class Influence(label, u, uid)¶
namedtuple: label, value, and identifier of a component of uncertaintyNew in version 1.3.7: The attribute uid has been added
- class Component(uid, u)¶
namedtuple: unique identifier and value of a component of uncertainty
- class CovarianceMatrix(rr, ri, ir, ii)¶
namedtuple: Values of covariance for a pair of quantitiesxandy
- class CorrelationMatrix(rr, ri, ir, ii)¶
namedtuple: Correlation coefficients for a pair of quantitiesxandy
- class InterceptSlope(a, b)¶
namedtuple: Values for interceptaand slopeb- a¶
UncertainReal: intercept
- b¶
UncertainReal: slope
- class FormattedUncertainReal(x, u, df, label)¶
namedtuple: The formatted representation of anUncertainRealnumber.New in version 1.4.0.
- label¶
str: the label of theUncertainRealnumber
- class FormattedUncertainComplex(x, u, r, df, label)¶
namedtuple: The formatted representation of anUncertainComplexnumber.New in version 1.4.0.
- u¶
StandardUncertainty: standard uncertainty
- label¶
str: the label of theUncertainComplexnumber