Lines Matching refs:m_fIntercept
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()
181 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fIntercept )); in ImplGetRepresentation()