| 
    libflame
    12600
    
   
   | 
  
  
  
 
Functions | |
| FLA_Error | FLA_Norm_frob_check (FLA_Obj A, FLA_Obj norm) | 
| FLA_Error FLA_Norm_frob_check | ( | FLA_Obj | A, | 
| FLA_Obj | norm | ||
| ) | 
References FLA_Check_floating_object(), FLA_Check_identical_object_precision(), FLA_Check_if_scalar(), FLA_Check_nonconstant_object(), and FLA_Check_real_object().
Referenced by FLA_Norm_frob().
{
  FLA_Error 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_real_object( norm );
  FLA_Check_error_code( e_val );
  e_val = FLA_Check_identical_object_precision( A, norm );
  FLA_Check_error_code( e_val );
  
  e_val = FLA_Check_if_scalar( norm );
  FLA_Check_error_code( e_val );
  return FLA_SUCCESS;
}
 1.7.6.1