|
libflame revision_anchor
|
Go to the source code of this file.
Functions | |
| FLA_Error | FLA_Svd (FLA_Svd_type jobu, FLA_Svd_type jobv, FLA_Obj A, FLA_Obj s, FLA_Obj U, FLA_Obj V) |
| FLA_Error FLA_Svd | ( | FLA_Svd_type | jobu, |
| FLA_Svd_type | jobv, | ||
| FLA_Obj | A, | ||
| FLA_Obj | s, | ||
| FLA_Obj | U, | ||
| FLA_Obj | V | ||
| ) |
References FLA_Check_error_level(), FLA_Svd_check(), and FLA_Svd_external().
{
FLA_Error r_val;
// Check parameters.
if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING )
FLA_Svd_check( jobu, jobv, A, s, U, V );
// Invoke FLA_Svd_external() for now.
r_val = FLA_Svd_external( jobu, jobv, A, s, U, V );
return r_val;
}
1.7.4