Method: EMAlgorithm::MdGaussian#update_parameters!

Defined in:
lib/em_algorithm/models/md_gaussian.rb

#update_parameters!(data_array, temp_weight, temp_weight_per_datum) ⇒ Object



42
43
44
45
# File 'lib/em_algorithm/models/md_gaussian.rb', line 42

def update_parameters!(data_array, temp_weight, temp_weight_per_datum)
  update_average!(data_array, temp_weight, temp_weight_per_datum)
  update_sigma2!(data_array, temp_weight, temp_weight_per_datum)
end