All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines
#include <StatisticalPoint.h>
Public Member Functions | |
| void | operator= (const RealStatisticalPoint &o) |
| void | operator= (const RealStatisticalValue &o) |
| RealStatisticalPoint () | |
| RealStatisticalPoint (double x, const double &y) | |
| void | setY (double v, const CurvePointOptions *options=0) |
| virtual const QString & | xml_tagName () const |
| double | y (const CurvePointOptions *options=0) const |
Static Public Attributes | |
| static const QString | xmlRealStatisticalPointTag = "RealStatisticalPoint" |
{}
| QGpCoreTools::RealStatisticalPoint::RealStatisticalPoint | ( | double | x, |
| const double & | y | ||
| ) | [inline] |
| void QGpCoreTools::RealStatisticalPoint::operator= | ( | const RealStatisticalPoint & | o | ) | [inline] |
Referenced by operator=().
| void QGpCoreTools::RealStatisticalPoint::operator= | ( | const RealStatisticalValue & | o | ) | [inline] |
Reimplemented in QGpCoreWave::FactoryPoint.
References operator=().
| void QGpCoreTools::RealStatisticalPoint::setY | ( | double | v, |
| const CurvePointOptions * | options = 0 |
||
| ) | [inline] |
References QGpCoreTools::StatisticalValue< double >::setMean().
{
Q_UNUSED(options);
setMean(v);
}
| virtual const QString& QGpCoreTools::RealStatisticalPoint::xml_tagName | ( | ) | const [inline, virtual] |
Implements QGpCoreTools::XMLClass.
Reimplemented in QGpCoreWave::ArrivalTime.
{return xmlRealStatisticalPointTag;}
| double QGpCoreTools::RealStatisticalPoint::y | ( | const CurvePointOptions * | options = 0 | ) | const [inline] |
References QGpCoreTools::StatisticalValue< double >::mean().
Referenced by QGpCoreWave::ModalCurve::determinantMisfit(), QGpCoreWave::AutocorrDispersion::dispersion(), SpacSelector::inverse(), and SpacSelector::selectSamples().
{
Q_UNUSED(options);
return StatisticalPoint<double>::mean();
}
const QString QGpCoreTools::RealStatisticalPoint::xmlRealStatisticalPointTag = "RealStatisticalPoint" [static] |