libflame  revision_anchor
Functions
FLA_Fill_with_logarithmic_dist_check.c File Reference

(r)

Functions

FLA_Error FLA_Fill_with_logarithmic_dist_check (FLA_Obj alpha, FLA_Obj x)
 

Function Documentation

◆ FLA_Fill_with_logarithmic_dist_check()

FLA_Error FLA_Fill_with_logarithmic_dist_check ( FLA_Obj  alpha,
FLA_Obj  x 
)
14 {
15  FLA_Error e_val;
16 
17  e_val = FLA_Check_floating_object( x );
18  FLA_Check_error_code( e_val );
19 
20  e_val = FLA_Check_nonconstant_object( x );
21  FLA_Check_error_code( e_val );
22 
23  e_val = FLA_Check_real_object( alpha );
24  FLA_Check_error_code( e_val );
25 
26  e_val = FLA_Check_identical_object_precision( x, alpha );
27  FLA_Check_error_code( e_val );
28 
29  e_val = FLA_Check_if_scalar( alpha );
30  FLA_Check_error_code( e_val );
31 
32  e_val = FLA_Check_if_vector( x );
33  FLA_Check_error_code( e_val );
34 
35  return FLA_SUCCESS;
36 }
FLA_Error FLA_Check_if_scalar(FLA_Obj A)
Definition: FLA_Check.c:373
FLA_Error FLA_Check_real_object(FLA_Obj A)
Definition: FLA_Check.c:258
FLA_Error FLA_Check_identical_object_precision(FLA_Obj A, FLA_Obj B)
Definition: FLA_Check.c:298
FLA_Error FLA_Check_nonconstant_object(FLA_Obj A)
Definition: FLA_Check.c:954
FLA_Error FLA_Check_if_vector(FLA_Obj A)
Definition: FLA_Check.c:383
FLA_Error FLA_Check_floating_object(FLA_Obj A)
Definition: FLA_Check.c:232
int FLA_Error
Definition: FLA_type_defs.h:47

References FLA_Check_floating_object(), FLA_Check_identical_object_precision(), FLA_Check_if_scalar(), FLA_Check_if_vector(), FLA_Check_nonconstant_object(), and FLA_Check_real_object().

Referenced by FLA_Fill_with_logarithmic_dist().