Consider the following array:
x=[80 55 304 115 5 24 72]
When I use np.var(x)=8508.8164
, however, Matlab's var(x) = 9.9270e+03
. How can this be? Is there a different function I should be using in Python?
Consider the following array:
x=[80 55 304 115 5 24 72]
When I use np.var(x)=8508.8164
, however, Matlab's var(x) = 9.9270e+03
. How can this be? Is there a different function I should be using in Python?