michalkielan / MatrixLibs

Small matrix library, written C++11
Mozilla Public License 2.0
1 stars 2 forks source link

Cholesky decomposition #8

Closed JaroslawWiosna closed 7 years ago

JaroslawWiosna commented 7 years ago

The Cholesky decomposition only works for symmetric, positive definite matrices. I haven't checked what positive definite means..., but isSymetric is implemented.

Damn.., is should be isSymmetric (double-m). I was writing with one-m only :(

Can I use std::enable_if for checking isSymmetric(A)?