1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "LogarithmicRegressionCurveCalculator.hxx"
22 #include "RegressionCalculationHelper.hxx"
24 #include <rtl/math.hxx>
25 #include <rtl/ustrbuf.hxx>
27 using namespace ::com::sun::star
;
32 LogarithmicRegressionCurveCalculator::LogarithmicRegressionCurveCalculator() :
36 ::rtl::math::setNan( & m_fSlope
);
37 ::rtl::math::setNan( & m_fIntercept
);
40 LogarithmicRegressionCurveCalculator::~LogarithmicRegressionCurveCalculator()
43 // ____ XRegressionCurve ____
44 void SAL_CALL
LogarithmicRegressionCurveCalculator::recalculateRegression(
45 const uno::Sequence
< double >& aXValues
,
46 const uno::Sequence
< double >& aYValues
)
47 throw (uno::RuntimeException
, std::exception
)
49 RegressionCalculationHelper::tDoubleVectorPair
aValues(
50 RegressionCalculationHelper::cleanup(
52 RegressionCalculationHelper::isValidAndXPositive()));
54 const size_t nMax
= aValues
.first
.size();
57 ::rtl::math::setNan( & m_fSlope
);
58 ::rtl::math::setNan( & m_fIntercept
);
59 ::rtl::math::setNan( & m_fCorrelationCoeffitient
);
63 double fAverageX
= 0.0, fAverageY
= 0.0;
65 for( i
= 0; i
< nMax
; ++i
)
67 fAverageX
+= log( aValues
.first
[i
] );
68 fAverageY
+= aValues
.second
[i
];
71 const double fN
= static_cast< double >( nMax
);
75 double fQx
= 0.0, fQy
= 0.0, fQxy
= 0.0;
76 for( i
= 0; i
< nMax
; ++i
)
78 double fDeltaX
= log( aValues
.first
[i
] ) - fAverageX
;
79 double fDeltaY
= aValues
.second
[i
] - fAverageY
;
81 fQx
+= fDeltaX
* fDeltaX
;
82 fQy
+= fDeltaY
* fDeltaY
;
83 fQxy
+= fDeltaX
* fDeltaY
;
86 m_fSlope
= fQxy
/ fQx
;
87 m_fIntercept
= fAverageY
- m_fSlope
* fAverageX
;
88 m_fCorrelationCoeffitient
= fQxy
/ sqrt( fQx
* fQy
);
91 double SAL_CALL
LogarithmicRegressionCurveCalculator::getCurveValue( double x
)
92 throw (lang::IllegalArgumentException
,
93 uno::RuntimeException
, std::exception
)
96 ::rtl::math::setNan( & fResult
);
98 if( ! ( ::rtl::math::isNan( m_fSlope
) ||
99 ::rtl::math::isNan( m_fIntercept
)))
101 fResult
= m_fSlope
* log( x
) + m_fIntercept
;
107 uno::Sequence
< geometry::RealPoint2D
> SAL_CALL
LogarithmicRegressionCurveCalculator::getCurveValues(
108 double min
, double max
, ::sal_Int32 nPointCount
,
109 const uno::Reference
< chart2::XScaling
>& xScalingX
,
110 const uno::Reference
< chart2::XScaling
>& xScalingY
,
111 sal_Bool bMaySkipPointsInCalculation
)
112 throw (lang::IllegalArgumentException
,
113 uno::RuntimeException
, std::exception
)
115 if( bMaySkipPointsInCalculation
&&
116 isLogarithmicScaling( xScalingX
) &&
117 isLinearScaling( xScalingY
))
120 uno::Sequence
< geometry::RealPoint2D
> aResult( 2 );
122 aResult
[0].Y
= this->getCurveValue( min
);
124 aResult
[1].Y
= this->getCurveValue( max
);
128 return RegressionCurveCalculator::getCurveValues( min
, max
, nPointCount
, xScalingX
, xScalingY
, bMaySkipPointsInCalculation
);
131 OUString
LogarithmicRegressionCurveCalculator::ImplGetRepresentation(
132 const uno::Reference
< util::XNumberFormatter
>& xNumFormatter
,
133 ::sal_Int32 nNumberFormatKey
) const
135 OUStringBuffer
aBuf( "f(x) = ");
137 bool bHaveSlope
= false;
139 if( m_fSlope
!= 0.0 )
141 if( ::rtl::math::approxEqual( fabs( m_fSlope
), 1.0 ))
144 aBuf
.append( UC_MINUS_SIGN
);
148 aBuf
.append( getFormattedString( xNumFormatter
, nNumberFormatKey
, m_fSlope
));
149 aBuf
.append( UC_SPACE
);
151 aBuf
.append( "ln(x)" );
157 if( m_fIntercept
< 0.0 )
159 aBuf
.append( UC_SPACE
);
160 aBuf
.append( UC_MINUS_SIGN
);
161 aBuf
.append( UC_SPACE
);
162 aBuf
.append( getFormattedString( xNumFormatter
, nNumberFormatKey
, fabs( m_fIntercept
)));
164 else if( m_fIntercept
> 0.0 )
166 aBuf
.append( " + " );
167 aBuf
.append( getFormattedString( xNumFormatter
, nNumberFormatKey
, m_fIntercept
));
172 aBuf
.append( getFormattedString( xNumFormatter
, nNumberFormatKey
, m_fIntercept
));
175 return aBuf
.makeStringAndClear();
180 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */