Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "ExponentialRegressionCurveCalculator.hxx"
21 : #include "macros.hxx"
22 : #include "RegressionCalculationHelper.hxx"
23 :
24 : #include <rtl/math.hxx>
25 : #include <rtl/ustrbuf.hxx>
26 :
27 : using namespace ::com::sun::star;
28 :
29 : namespace chart
30 : {
31 :
32 0 : ExponentialRegressionCurveCalculator::ExponentialRegressionCurveCalculator() :
33 : m_fLogSlope( 0.0 ),
34 0 : m_fLogIntercept( 0.0 )
35 : {
36 0 : ::rtl::math::setNan( & m_fLogSlope );
37 0 : ::rtl::math::setNan( & m_fLogIntercept );
38 0 : }
39 :
40 0 : ExponentialRegressionCurveCalculator::~ExponentialRegressionCurveCalculator()
41 0 : {}
42 :
43 : // ____ XRegressionCurveCalculator ____
44 0 : void SAL_CALL ExponentialRegressionCurveCalculator::recalculateRegression(
45 : const uno::Sequence< double >& aXValues,
46 : const uno::Sequence< double >& aYValues )
47 : throw (uno::RuntimeException, std::exception)
48 : {
49 : RegressionCalculationHelper::tDoubleVectorPair aValues(
50 : RegressionCalculationHelper::cleanup(
51 : aXValues, aYValues,
52 0 : RegressionCalculationHelper::isValidAndYPositive()));
53 :
54 0 : const size_t nMax = aValues.first.size();
55 0 : if( nMax == 0 )
56 : {
57 0 : ::rtl::math::setNan( & m_fLogSlope );
58 0 : ::rtl::math::setNan( & m_fLogIntercept );
59 0 : ::rtl::math::setNan( & m_fCorrelationCoeffitient );// actual it is coefficient of determination
60 0 : return;
61 : }
62 :
63 0 : double fAverageX = 0.0, fAverageY = 0.0;
64 0 : size_t i = 0;
65 0 : for( i = 0; i < nMax; ++i )
66 : {
67 0 : fAverageX += aValues.first[i];
68 0 : fAverageY += log( aValues.second[i] );
69 : }
70 :
71 0 : const double fN = static_cast< double >( nMax );
72 0 : fAverageX /= fN;
73 0 : fAverageY /= fN;
74 :
75 0 : double fQx = 0.0, fQy = 0.0, fQxy = 0.0;
76 0 : for( i = 0; i < nMax; ++i )
77 : {
78 0 : double fDeltaX = aValues.first[i] - fAverageX;
79 0 : double fDeltaY = log( aValues.second[i] ) - fAverageY;
80 :
81 0 : fQx += fDeltaX * fDeltaX;
82 0 : fQy += fDeltaY * fDeltaY;
83 0 : fQxy += fDeltaX * fDeltaY;
84 : }
85 :
86 0 : m_fLogSlope = fQxy / fQx;
87 0 : m_fLogIntercept = fAverageY - m_fLogSlope * fAverageX;
88 0 : m_fCorrelationCoeffitient = fQxy / sqrt( fQx * fQy );
89 :
90 : }
91 :
92 0 : double SAL_CALL ExponentialRegressionCurveCalculator::getCurveValue( double x )
93 : throw (lang::IllegalArgumentException,
94 : uno::RuntimeException, std::exception)
95 : {
96 : double fResult;
97 0 : ::rtl::math::setNan( & fResult );
98 :
99 0 : if( ! ( ::rtl::math::isNan( m_fLogSlope ) ||
100 0 : ::rtl::math::isNan( m_fLogIntercept )))
101 : {
102 0 : fResult = exp(m_fLogIntercept + x * m_fLogSlope);
103 : }
104 :
105 0 : return fResult;
106 : }
107 :
108 0 : uno::Sequence< geometry::RealPoint2D > SAL_CALL ExponentialRegressionCurveCalculator::getCurveValues(
109 : double min, double max, ::sal_Int32 nPointCount,
110 : const uno::Reference< chart2::XScaling >& xScalingX,
111 : const uno::Reference< chart2::XScaling >& xScalingY,
112 : sal_Bool bMaySkipPointsInCalculation )
113 : throw (lang::IllegalArgumentException,
114 : uno::RuntimeException, std::exception)
115 : {
116 0 : if( bMaySkipPointsInCalculation &&
117 0 : isLinearScaling( xScalingX ) &&
118 0 : isLogarithmicScaling( xScalingY ))
119 : {
120 : // optimize result
121 0 : uno::Sequence< geometry::RealPoint2D > aResult( 2 );
122 0 : aResult[0].X = min;
123 0 : aResult[0].Y = this->getCurveValue( min );
124 0 : aResult[1].X = max;
125 0 : aResult[1].Y = this->getCurveValue( max );
126 :
127 0 : return aResult;
128 : }
129 :
130 0 : return RegressionCurveCalculator::getCurveValues( min, max, nPointCount, xScalingX, xScalingY, bMaySkipPointsInCalculation );
131 : }
132 :
133 0 : OUString ExponentialRegressionCurveCalculator::ImplGetRepresentation(
134 : const uno::Reference< util::XNumberFormatter >& xNumFormatter,
135 : ::sal_Int32 nNumberFormatKey ) const
136 : {
137 0 : double fIntercept = exp(m_fLogIntercept);
138 0 : double fSlope = exp(m_fLogSlope);
139 0 : bool bHasSlope = !rtl::math::approxEqual( fSlope, 1.0 );
140 0 : bool bHasIntercept = !rtl::math::approxEqual( fIntercept, 1.0 );
141 :
142 0 : OUStringBuffer aBuf( "f(x) = ");
143 :
144 0 : if ( fIntercept == 0.0)
145 : {
146 : // underflow, a true zero is impossible
147 0 : aBuf.append( "exp( ");
148 0 : aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogIntercept) );
149 0 : aBuf.append( (m_fLogSlope < 0.0) ? " - " : " + ");
150 0 : aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fabs(m_fLogSlope)) );
151 0 : aBuf.append( " x )");
152 : }
153 : else
154 : {
155 0 : if (bHasIntercept)
156 : {
157 0 : aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fIntercept) );
158 0 : aBuf.append( " exp( ");
159 0 : aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogSlope) );
160 0 : aBuf.append( " x )");
161 : }
162 : else
163 : {
164 : // show logarithmic output, if intercept and slope both are near one
165 : // otherwise drop output of intercept, which is 1 here
166 0 : aBuf.append( " exp( ");
167 0 : if (!bHasSlope)
168 : {
169 0 : aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogIntercept) );
170 0 : aBuf.append( (m_fLogSlope < 0.0) ? " - " : " + ");
171 0 : aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, fabs(m_fLogSlope)) );
172 : }
173 : else
174 : {
175 0 : aBuf.append( getFormattedString( xNumFormatter, nNumberFormatKey, m_fLogSlope) );
176 : }
177 0 : aBuf.append( " x )");
178 : }
179 : }
180 :
181 0 : return aBuf.makeStringAndClear();
182 : }
183 :
184 : } // namespace chart
185 :
186 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|