![]() |
![]()
| ![]() |
![]()
LIBRARY#include <statsf.h> -lbasic-stats -lxtend SYNOPSISint statsf_set_col_sums_cpy(statsf_t *statsf_ptr, double * new_col_sums, size_t array_size) ARGUMENTSstatsf_ptr Pointer to the structure to set new_col_sums The new value for col_sums array_size Size of the col_sums array. DESCRIPTIONMutator for col_sums member in a statsf_t structure. Use this function to set col_sums in a statsf_t object from non-member functions. This function copies the array pointed to by new_col_sums to statsf_ptr->col_sums. RETURN VALUESSTATSF_DATA_OK if the new value is acceptable and assigned STATSF_DATA_OUT_OF_RANGE otherwise EXAMPLESstatsf_t statsf; double * new_col_sums; size_t array_size; if ( statsf_set_col_sums_cpy(&statsf, new_col_sums, array_size) SEE ALSOSTATSF_SET_COL_SUMS(3)
|