= private = protected
elements(array, copy = true)
Creates a vector from an Array. The optional second argument specifies whether the array itself or a copy is used internally.
# File lib/matrix.rb, line 1013 def Vector.elements(array, copy = true) new(:init_elements, array, copy) end