NumCpp
2.12.1
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
|
inlineexplicit |
Constructor
inMatrix | matrix to perform SVD on |
|
inlinenoexcept |
the resultant w matrix
|
inlinenoexcept |
the resultant u matrix
|
inlinenoexcept |
the resultant v matrix