office-gobmx/chart2/source/tools/MeanValueRegressionCurveCalculator.cxx

141 lines
4.1 KiB
C++
Raw Normal View History

2003-12-17 07:21:01 -06:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2003-12-17 07:21:01 -06:00
*
* $RCSfile: MeanValueRegressionCurveCalculator.cxx,v $
2003-12-17 07:21:01 -06:00
*
* $Revision: 1.6 $
2003-12-17 07:21:01 -06:00
*
* last change: $Author: vg $ $Date: 2007-10-22 16:54:56 $
2003-12-17 07:21:01 -06:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2003-12-17 07:21:01 -06:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2003-12-17 07:21:01 -06:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2003-12-17 07:21:01 -06:00
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2003-12-17 07:21:01 -06:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2003-12-17 07:21:01 -06:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_chart2.hxx"
2003-12-17 07:21:01 -06:00
#include "MeanValueRegressionCurveCalculator.hxx"
#include "macros.hxx"
#include "RegressionCalculationHelper.hxx"
#ifndef INCLUDED_RTL_MATH_HXX
#include <rtl/math.hxx>
#endif
#ifndef _RTL_USTRBUF_HXX_
#include <rtl/ustrbuf.hxx>
#endif
using namespace ::com::sun::star;
using ::rtl::OUString;
using ::rtl::OUStringBuffer;
namespace chart
{
MeanValueRegressionCurveCalculator::MeanValueRegressionCurveCalculator() :
m_fMeanValue( 0.0 ),
m_fCorrelationCoeffitient( 0.0 )
{
::rtl::math::setNan( & m_fMeanValue );
::rtl::math::setNan( & m_fCorrelationCoeffitient );
}
MeanValueRegressionCurveCalculator::~MeanValueRegressionCurveCalculator()
{}
// ____ XRegressionCurveCalculator ____
void SAL_CALL MeanValueRegressionCurveCalculator::recalculateRegression(
const uno::Sequence< double >& /*aXValues*/,
2003-12-17 07:21:01 -06:00
const uno::Sequence< double >& aYValues )
throw (uno::RuntimeException)
{
const sal_Int32 nDataLength = aYValues.getLength();
sal_Int32 nMax = nDataLength;
2003-12-17 07:21:01 -06:00
double fSumY = 0.0;
const double * pY = aYValues.getConstArray();
for( sal_Int32 i = 0; i < nDataLength; ++i )
2003-12-17 07:21:01 -06:00
{
if( ::rtl::math::isNan( pY[i] ) ||
::rtl::math::isInf( pY[i] ))
--nMax;
else
fSumY += pY[i];
}
m_fCorrelationCoeffitient = 0.0;
2003-12-17 07:21:01 -06:00
if( nMax == 0 )
{
2003-12-17 07:21:01 -06:00
::rtl::math::setNan( & m_fMeanValue );
}
2003-12-17 07:21:01 -06:00
else
{
2003-12-17 07:21:01 -06:00
m_fMeanValue = fSumY / static_cast< double >( nMax );
// correlation coefficient: standard deviation
if( nMax > 1 )
{
double fErrorSum = 0.0;
for( sal_Int32 i = 0; i < nDataLength; ++i )
{
if( !::rtl::math::isNan( pY[i] ) &&
!::rtl::math::isInf( pY[i] ))
{
double v = m_fMeanValue - pY[i];
fErrorSum += (v*v);
}
}
OSL_ASSERT( fErrorSum >= 0.0 );
m_fCorrelationCoeffitient = sqrt( fErrorSum / (nMax - 1 ));
}
}
2003-12-17 07:21:01 -06:00
}
double SAL_CALL MeanValueRegressionCurveCalculator::getCurveValue( double /*x*/ )
2003-12-17 07:21:01 -06:00
throw (lang::IllegalArgumentException,
uno::RuntimeException)
{
return m_fMeanValue;
}
double SAL_CALL MeanValueRegressionCurveCalculator::getCorrelationCoefficient()
throw (uno::RuntimeException)
{
return m_fCorrelationCoeffitient;
}
OUString SAL_CALL MeanValueRegressionCurveCalculator::getRepresentation()
throw (uno::RuntimeException)
{
OUStringBuffer aBuf( C2U( "f(x) = " ));
aBuf.append( NUMBER_TO_STR( m_fMeanValue ));
return aBuf.makeStringAndClear();
}
} // namespace chart