php_error_docref(NULL TSRMLS_CC, E_WARNING, "The array has zero elements");
RETURN_FALSE;
}
+ if (sample && zend_hash_num_elements(Z_ARRVAL_P(arr)) == 1) {
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "The array has only 1 element");
+ RETURN_FALSE;
+ }
RETURN_DOUBLE(php_population_variance(arr, sample));
}
/* }}} */
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The array has zero elements");
RETURN_FALSE;
}
+ if (sample && zend_hash_num_elements(Z_ARRVAL_P(arr)) == 1) {
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "The array has only 1 element");
+ RETURN_FALSE;
+ }
RETURN_DOUBLE(sqrt(php_population_variance(arr, sample)));
}
/* }}} */