![]() |
NumCpp
2.14.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
|
#include <SVDClass.hpp>
Public Member Functions | |
SVD (const NdArray< double > &inMatrix) | |
const NdArray< double > & | s () noexcept |
NdArray< double > | solve (const NdArray< double > &inInput, double inThresh=-1.) |
const NdArray< double > & | u () noexcept |
const NdArray< double > & | v () noexcept |
performs the singular value decomposition of a general matrix, taken and adapted from Numerical Recipes Third Edition svd.h
Constructor
inMatrix | matrix to perform SVD on |
the resultant w matrix
the resultant u matrix
the resultant v matrix