# File hvector.rb, line 22 def /(a) if a.class == Vector raise else quotient = Vector.new # scalar quotient self.each_index{|k| quotient[k] = self[k]/a} end quotient end