Class: Matrix
Instance Method Summary collapse
Instance Method Details
#elementwise_division(other) ⇒ Object
2 3 4 5 6 |
# File 'lib/daru_lite/monkeys/matrix.rb', line 2 def elementwise_division(other) map.with_index do |e, index| e / other.to_a.flatten[index] end end |