Method: CArray#stats_wvariance_with_fixed_mean

Defined in:
lib/carray-gsl/core.rb

#stats_wvariance_with_fixed_mean(w, mean) ⇒ Object



480
481
482
483
484
# File 'lib/carray-gsl/core.rb', line 480

def stats_wvariance_with_fixed_mean (w, mean)
  CArray.attach(self, w) {
    return GSL::Stats.wvariance_with_fixed_mean(self.gv, w.gv, mean)
  }
end