![]() |
![]()
| ![]() |
![]()
LIBRARY#include <statsf.h> -lbasic-stats -lxtend SYNOPSISint statsf_set_row_sums_ae(statsf_t *statsf_ptr, size_t c, double new_row_sums_element) ARGUMENTSstatsf_ptr Pointer to the structure to set c Subscript to the row_sums array new_row_sums_element The new value for row_sums[c] DESCRIPTIONMutator for an array element of row_sums member in a statsf_t structure. Use this function to set statsf_ptr->row_sums[c] in a statsf_t object from non-member functions. RETURN VALUESSTATSF_DATA_OK if the new value is acceptable and assigned STATSF_DATA_OUT_OF_RANGE otherwise EXAMPLESstatsf_t statsf; size_t c; double * new_row_sums_element; if ( statsf_set_row_sums_ae(&statsf, c, new_row_sums_element) SEE ALSOSTATSF_SET_ROW_SUMS_AE(3)
|