GNU Octave
3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
|
#include "dbleSVD.h"
Public Types | |
enum | driver { GESVD, GESDD } |
enum | type { std, economy, sigma_only } |
Public Member Functions | |
SVD (void) | |
SVD (const Matrix &a, type svd_type=SVD::std, driver svd_driver=SVD::GESVD) | |
SVD (const Matrix &a, octave_idx_type &info, type svd_type=SVD::std, driver svd_driver=SVD::GESVD) | |
SVD (const SVD &a) | |
~SVD (void) | |
Matrix | left_singular_matrix (void) const |
SVD & | operator= (const SVD &a) |
Matrix | right_singular_matrix (void) const |
DiagMatrix | singular_values (void) const |
Private Member Functions | |
octave_idx_type | init (const Matrix &a, type svd_type=std, driver svd_driver=GESVD) |
Private Attributes | |
Matrix | left_sm |
Matrix | right_sm |
DiagMatrix | sigma |
SVD::type | type_computed |
Friends | |
std::ostream & | operator<< (std::ostream &os, const SVD &a) |
enum SVD::driver |
|
inline |
|
inline |
|
private |
Definition at line 84 of file dbleSVD.cc.
References Array< T >::cols(), economy, F77_CHAR_ARG_LEN, F77_CONST_CHAR_ARG2, F77_XFCN, DiagArray2< T >::fortran_vec(), Array< T >::fortran_vec(), GESDD, GESVD, left_sm, max(), OCTAVE_LOCAL_BUFFER, Matrix::resize(), DiagArray2< T >::resize(), Array< T >::resize(), right_sm, Array< T >::rows(), sigma, sigma_only, Matrix::transpose(), and type_computed.
Definition at line 58 of file dbleSVD.cc.
References left_sm, sigma_only, and type_computed.
Referenced by Fsvd(), operator<<(), and Matrix::pseudo_inverse().
Definition at line 71 of file dbleSVD.cc.
References right_sm, sigma_only, and type_computed.
Referenced by Fsvd(), null(), operator<<(), and Matrix::pseudo_inverse().
|
inline |
Definition at line 86 of file dbleSVD.h.
Referenced by Fsvd(), null(), operator<<(), and Matrix::pseudo_inverse().
|
friend |
Definition at line 204 of file dbleSVD.cc.
|
private |
Definition at line 99 of file dbleSVD.h.
Referenced by init(), left_singular_matrix(), and operator=().
|
private |
Definition at line 100 of file dbleSVD.h.
Referenced by init(), operator=(), and right_singular_matrix().
|
private |
Definition at line 98 of file dbleSVD.h.
Referenced by init(), and operator=().
|
private |
Definition at line 96 of file dbleSVD.h.
Referenced by init(), left_singular_matrix(), operator=(), and right_singular_matrix().