SimpleMath: fixed matrix.llt().inverse() (was using unused variable).
parent
17336be8d6
commit
17a8a0347f
|
@ -1555,7 +1555,6 @@ private:
|
||||||
typedef Matrix<value_type, Derived::RowsAtCompileTime, 1> ColumnVector;
|
typedef Matrix<value_type, Derived::RowsAtCompileTime, 1> ColumnVector;
|
||||||
|
|
||||||
bool mIsFactorized;
|
bool mIsFactorized;
|
||||||
Matrix<value_type, Derived::RowsAtCompileTime, Derived::ColsAtCompileTime> mQ;
|
|
||||||
Derived mL;
|
Derived mL;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -1624,13 +1623,13 @@ public:
|
||||||
Derived inverse() const {
|
Derived inverse() const {
|
||||||
assert (mIsFactorized);
|
assert (mIsFactorized);
|
||||||
|
|
||||||
VectorXd rhs_temp = VectorXd::Zero(mQ.cols());
|
VectorXd rhs_temp = VectorXd::Zero(mL.cols());
|
||||||
MatrixXXd result (mQ.cols(), mQ.cols());
|
MatrixXXd result (mL.cols(), mL.cols());
|
||||||
|
|
||||||
for (unsigned int i = 0; i < mQ.cols(); i++) {
|
for (unsigned int i = 0; i < mL.cols(); i++) {
|
||||||
rhs_temp[i] = 1.;
|
rhs_temp[i] = 1.;
|
||||||
|
|
||||||
result.block(0, i, mQ.cols(), 1) = solve(rhs_temp);
|
result.block(0, i, mL.cols(), 1) = solve(rhs_temp);
|
||||||
|
|
||||||
rhs_temp[i] = 0.;
|
rhs_temp[i] = 0.;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue