Lines Matching refs:m_fSlope
42 m_fSlope( 0.0 ), in LogarithmicRegressionCurveCalculator()
45 ::rtl::math::setNan( & m_fSlope ); in LogarithmicRegressionCurveCalculator()
66 ::rtl::math::setNan( & m_fSlope ); in recalculateRegression()
95 m_fSlope = fQxy / fQx; in recalculateRegression()
96 m_fIntercept = fAverageY - m_fSlope * fAverageX; in recalculateRegression()
107 if( ! ( ::rtl::math::isNan( m_fSlope ) || in getCurveValue()
110 fResult = m_fSlope * log( x ) + m_fIntercept; in getCurveValue()
148 if( m_fSlope != 0.0 ) in ImplGetRepresentation()
150 if( ::rtl::math::approxEqual( fabs( m_fSlope ), 1.0 )) in ImplGetRepresentation()
152 if( m_fSlope < 0 ) in ImplGetRepresentation()
157 aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fSlope )); in ImplGetRepresentation()