[Genabel-commits] r1629 - branches/ProbABEL-0.50/src
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun Mar 2 00:59:03 CET 2014
Author: maartenk
Date: 2014-03-02 00:59:02 +0100 (Sun, 02 Mar 2014)
New Revision: 1629
Modified:
branches/ProbABEL-0.50/src/reg1.cpp
branches/ProbABEL-0.50/src/reg1.h
Log:
Objects to mmscore_regression() were value copied, although they were parsed as reference. Changed this for now in the way that arguments are in mematrix form and not the EIGEN form.
Modified: branches/ProbABEL-0.50/src/reg1.cpp
===================================================================
--- branches/ProbABEL-0.50/src/reg1.cpp 2014-03-01 00:51:03 UTC (rev 1628)
+++ branches/ProbABEL-0.50/src/reg1.cpp 2014-03-01 23:59:02 UTC (rev 1629)
@@ -310,22 +310,24 @@
chi2_score = chi2[0];
}
-void linear_reg::mmscore_regression(const MatrixXd& X,
- const MatrixXd& W, LDLT<MatrixXd>& Ch) {
+void linear_reg::mmscore_regression(const mematrix<double>& X,
+ const masked_matrix& W_masked, LDLT<MatrixXd>& Ch) {
+
+
VectorXd Y = reg_data.Y.data.col(0);
- if (X.cols() == 3)
+ if (X.data.cols() == 3)
{
- Matrix<double, 3, Dynamic> tXW = X.transpose()* W;
- Matrix3d xWx = tXW * X;
+ Matrix<double, 3, Dynamic> tXW = X.data.transpose()* W_masked.masked_data->data;
+ Matrix3d xWx = tXW * X.data;
Ch = LDLT<MatrixXd>(xWx);
Vector3d beta_3f = Ch.solve(tXW * Y);
sigma2 = (Y - tXW.transpose() * beta_3f).squaredNorm();
beta.data = beta_3f;
}
- else if (X.cols() == 2)
+ else if (X.data.cols() == 2)
{
- Matrix<double, 2, Dynamic> tXW = X.transpose()* W;
- Matrix2d xWx = tXW * X;
+ Matrix<double, 2, Dynamic> tXW = X.data.transpose()* W_masked.masked_data->data;
+ Matrix2d xWx = tXW * X.data;
Ch = LDLT<MatrixXd>(xWx);
Vector2d beta_2f = Ch.solve(tXW * Y);
sigma2 = (Y - tXW.transpose() * beta_2f).squaredNorm();
@@ -334,8 +336,8 @@
else
{
// next line is 5997000 flops
- MatrixXd tXW = X.transpose() * W;
- Ch = LDLT<MatrixXd>(tXW * X); // 17991 flops
+ MatrixXd tXW = X.data.transpose() * W_masked.masked_data->data;
+ Ch = LDLT<MatrixXd>(tXW * X.data); // 17991 flops
beta.data = Ch.solve(tXW * Y); //5997 flops
//next line is: 1000+5000+3000= 9000 flops
sigma2 = (Y - tXW.transpose() * beta.data).squaredNorm();
@@ -405,7 +407,7 @@
//Oct 26, 2009
#if EIGEN
- mmscore_regression(X.data, invvarmatrixin.masked_data->data, Ch);
+ mmscore_regression(X, invvarmatrixin, Ch);
#else
// next line is 5997000 flops
mematrix<double> tXW = transpose(X) * invvarmatrixin.masked_data;
Modified: branches/ProbABEL-0.50/src/reg1.h
===================================================================
--- branches/ProbABEL-0.50/src/reg1.h 2014-03-01 00:51:03 UTC (rev 1628)
+++ branches/ProbABEL-0.50/src/reg1.h 2014-03-01 23:59:02 UTC (rev 1629)
@@ -101,8 +101,8 @@
const masked_matrix& invvarmatrix, int nullmodel = 0);
private:
- void mmscore_regression(const MatrixXd& X,
- const MatrixXd& W, LDLT<MatrixXd>& Ch);
+ void mmscore_regression(const mematrix<double>& X,
+ const masked_matrix& W_masked, LDLT<MatrixXd>& Ch);
};
class logistic_reg: public base_reg {
More information about the Genabel-commits
mailing list