![]() |
![]()
| ![]() |
![]()
LIBRARY#include <statsf.h> -lbasic-stats -lxtend SYNOPSISint statsf_set_row_sums(statsf_t *statsf_ptr, double * new_row_sums) ARGUMENTSstatsf_ptr Pointer to the structure to set new_row_sums The new value for row_sums DESCRIPTIONMutator for row_sums member in a statsf_t structure. Use this function to set row_sums in a statsf_t object from non-member functions. This function performs a direct assignment for scalar or pointer structure members. If row_sums is a pointer, data previously pointed to should be freed before calling this function to avoid memory leaks. RETURN VALUESSTATSF_DATA_OK if the new value is acceptable and assigned STATSF_DATA_OUT_OF_RANGE otherwise EXAMPLESstatsf_t statsf; double * new_row_sums; if ( statsf_set_row_sums(&statsf, new_row_sums) SEE ALSO(3)
|