rename Regression --> LeastSquares

This commit is contained in:
Benoit Jacob
2009-01-04 15:55:54 +00:00
parent 15ca6659ac
commit 269bf67796
3 changed files with 34 additions and 29 deletions

View File

@@ -23,14 +23,14 @@
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#include "main.h"
#include <Eigen/Regression>
#include <Eigen/LeastSquares>
template<typename VectorType,
typename HyperplaneType>
void makeNoisyCohyperplanarPoints(int numPoints,
VectorType **points,
HyperplaneType *hyperplane,
typename VectorType::Scalar noiseAmplitude )
typename VectorType::Scalar noiseAmplitude)
{
typedef typename VectorType::Scalar Scalar;
const int size = points[0]->size();