MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_var_all

Function af_var_all

src/api/c/var.cpp:337–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

335}
336
337af_err af_var_all(double* realVal, double* imagVal, const af_array in,
338 const bool isbiased) {
339 const af_var_bias bias =
340 (isbiased ? AF_VARIANCE_SAMPLE : AF_VARIANCE_POPULATION);
341 return af_var_all_v2(realVal, imagVal, in, bias);
342}
343
344af_err af_var_all_v2(double* realVal, double* imagVal, const af_array in,
345 const af_var_bias bias) {

Callers

nothing calls this directly

Calls 1

af_var_all_v2Function · 0.70

Tested by

no test coverage detected