Go to the source code of this file.
Typedefs | |
typedef int | SvdFlag |
Enumerations | |
enum | SvdAlgo { SVD_LAPACK, SVD_GSL } |
Variables | |
const SvdFlag | SVD_FULL = (1 << 0) |
compute the full svd including nullspace | |
const SvdFlag | SVD_TALL = (1 << 1) |
use algorithm optimized for tall matrices |
Definition in file LinearAlgebraFlags.H.
enum SvdAlgo |
SVD_LAPACK |
use the fortran-77 lapack function dgesdd_() |
SVD_GSL |
use the gsl function SV_decomp() |
Definition at line 41 of file LinearAlgebraFlags.H.
const SvdFlag SVD_FULL = (1 << 0) |
compute the full svd including nullspace
Definition at line 49 of file LinearAlgebraFlags.H.
const SvdFlag SVD_TALL = (1 << 1) |
use algorithm optimized for tall matrices
Definition at line 50 of file LinearAlgebraFlags.H.