|
libflame
12600
|
Functions | |
| FLA_Error | FLA_Hevdr_check (FLA_Evd_type jobz, FLA_Uplo uplo, FLA_Obj A, FLA_Obj l, FLA_Obj Z) |
| FLA_Error FLA_Hevdr_check | ( | FLA_Evd_type | jobz, |
| FLA_Uplo | uplo, | ||
| FLA_Obj | A, | ||
| FLA_Obj | l, | ||
| FLA_Obj | Z | ||
| ) |
References FLA_Check_col_storage(), FLA_Check_conformal_dims(), FLA_Check_floating_object(), FLA_Check_identical_object_datatype(), FLA_Check_identical_object_precision(), FLA_Check_nonconstant_object(), FLA_Check_real_object(), FLA_Check_square(), FLA_Check_valid_evd_type(), FLA_Check_valid_uplo(), FLA_Check_vector_dim(), and FLA_Obj_length().
Referenced by FLA_Hevdr_external().
{
FLA_Error e_val;
e_val = FLA_Check_valid_evd_type( jobz );
FLA_Check_error_code( e_val );
e_val = FLA_Check_valid_uplo( uplo );
FLA_Check_error_code( e_val );
e_val = FLA_Check_floating_object( A );
FLA_Check_error_code( e_val );
e_val = FLA_Check_nonconstant_object( A );
FLA_Check_error_code( e_val );
e_val = FLA_Check_identical_object_datatype( A, Z );
FLA_Check_error_code( e_val );
e_val = FLA_Check_real_object( l );
FLA_Check_error_code( e_val );
e_val = FLA_Check_identical_object_precision( A, l );
FLA_Check_error_code( e_val );
e_val = FLA_Check_square( A );
FLA_Check_error_code( e_val );
e_val = FLA_Check_conformal_dims( FLA_NO_TRANSPOSE, A, Z );
FLA_Check_error_code( e_val );
e_val = FLA_Check_vector_dim( l, FLA_Obj_length( A ) );
FLA_Check_error_code( e_val );
e_val = FLA_Check_col_storage( l );
FLA_Check_error_code( e_val );
return FLA_SUCCESS;
}
1.7.6.1