Searched refs:m_fIntercept (Results 1 – 6 of 6) sorted by relevance
/aoo42x/main/chart2/source/tools/ |
H A D | PotentialRegressionCurveCalculator.cxx | 43 m_fIntercept( 0.0 ) in PotentialRegressionCurveCalculator() 46 ::rtl::math::setNan( & m_fIntercept ); in PotentialRegressionCurveCalculator() 67 ::rtl::math::setNan( & m_fIntercept ); in recalculateRegression() 96 m_fIntercept = fAverageY - m_fSlope * fAverageX; in recalculateRegression() 99 m_fIntercept = exp( m_fIntercept ); in recalculateRegression() 110 ::rtl::math::isNan( m_fIntercept ))) in getCurveValue() 112 fResult = m_fIntercept * pow( x, m_fSlope ); in getCurveValue() 148 if( m_fIntercept == 0.0 ) in ImplGetRepresentation() 154 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fIntercept )); in ImplGetRepresentation() 158 if( ! rtl::math::approxEqual( m_fIntercept, 1.0 ) ) in ImplGetRepresentation() [all …]
|
H A D | LinearRegressionCurveCalculator.cxx | 43 m_fIntercept( 0.0 ) in LinearRegressionCurveCalculator() 46 ::rtl::math::setNan( & m_fIntercept ); in LinearRegressionCurveCalculator() 67 ::rtl::math::setNan( & m_fIntercept ); in recalculateRegression() 84 m_fIntercept = (fSumY - m_fSlope * fSumX) / fN; in recalculateRegression() 99 ::rtl::math::isNan( m_fIntercept ))) in getCurveValue() 101 fResult = m_fSlope * x + m_fIntercept; in getCurveValue() 154 if( m_fIntercept < 0.0 ) in ImplGetRepresentation() 159 … aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fabs( m_fIntercept ))); in ImplGetRepresentation() 161 else if( m_fIntercept > 0.0 ) in ImplGetRepresentation() 164 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fIntercept )); in ImplGetRepresentation() [all …]
|
H A D | LogarithmicRegressionCurveCalculator.cxx | 43 m_fIntercept( 0.0 ) in LogarithmicRegressionCurveCalculator() 46 ::rtl::math::setNan( & m_fIntercept ); in LogarithmicRegressionCurveCalculator() 67 ::rtl::math::setNan( & m_fIntercept ); in recalculateRegression() 96 m_fIntercept = fAverageY - m_fSlope * fAverageX; in recalculateRegression() 108 ::rtl::math::isNan( m_fIntercept ))) in getCurveValue() 110 fResult = m_fSlope * log( x ) + m_fIntercept; in getCurveValue() 166 if( m_fIntercept < 0.0 ) in ImplGetRepresentation() 171 … aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fabs( m_fIntercept ))); in ImplGetRepresentation() 173 else if( m_fIntercept > 0.0 ) in ImplGetRepresentation() 176 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fIntercept )); in ImplGetRepresentation() [all …]
|
/aoo42x/main/chart2/source/inc/ |
H A D | LinearRegressionCurveCalculator.hxx | 64 double m_fIntercept; member in chart::LinearRegressionCurveCalculator
|
H A D | LogarithmicRegressionCurveCalculator.hxx | 64 double m_fIntercept; member in chart::LogarithmicRegressionCurveCalculator
|
H A D | PotentialRegressionCurveCalculator.hxx | 66 double m_fIntercept; member in chart::PotentialRegressionCurveCalculator
|
Completed in 26 milliseconds