[Quantproject-developers] QuantProject/b1_ADT/Econometrics ILinearRegression.cs, NONE, 1.1
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-27 17:05:59
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT/Econometrics In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv29508/Econometrics Added Files: ILinearRegression.cs Log Message: Interface to be implemented by those classes that run a linear regression --- NEW FILE: ILinearRegression.cs --- /* * Created by SharpDevelop. * User: Glauco * Date: 22/03/2010 * Time: 16.13 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; namespace QuantProject.ADT.Econometrics { /// <summary> /// Interface to be implemented by those classes that run a /// linear regression /// </summary> public interface ILinearRegression { double[] EstimatedCoefficients{ get; } double CenteredRSquare{ get; } void RunRegression( double[] regressand , double[,] regressors ); } } |