class Vector

Parent:
Object
Included modules:
Enumerable

The Vector class represents a mathematical vector, which is useful in its own right, and also constitutes a row or column of a Matrix.

Method Catalogue

To create a Vector:

To access elements:

To enumerate the elements:

Properties of vectors:

Vector arithmetic:

  • #*(x) “is matrix or number”

  • #+(v)

  • #-(v)

  • #/(v)

  • #+@

  • #-@

Vector functions:

Conversion to other data types:

String representations:

Attributes

elements[R]

INSTANCE CREATION

Public Class Methods

[](*array) Show source
# File lib/matrix.rb, line 1695
def Vector.[](*array)
  new convert_to_array(array, false)
end

Creates a Vector from a list of elements.

Vector[7, 4, ...]
basis(size:, index:) Show source
# File lib/matrix.rb, line 1712
def Vector.basis(size:, index:)
  raise ArgumentError, "invalid size (#{size} for 1..)" if size < 1
  raise ArgumentError, "invalid index (#{index} for 0...#{size})" unless 0 <= index && index < size
  array = Array.new(size, 0)
  array[index] = 1
  new convert_to_array(array, false)
end

Returns a standard basis n-vector, where k is the index.

Vector.basis(size:, index:) # => Vector[0, 1, 0]
elements(array, copy = true) Show source
# File lib/matrix.rb, line 1703
def Vector.elements(array, copy = true)
  new convert_to_array(array, copy)
end

Creates a vector from an Array. The optional second argument specifies whether the array itself or a copy is used internally.

independent?(*vs) Show source
# File lib/matrix.rb, line 1823
def Vector.independent?(*vs)
  vs.each do |v|
    raise TypeError, "expected Vector, got #{v.class}" unless v.is_a?(Vector)
    Vector.Raise ErrDimensionMismatch unless v.size == vs.first.size
  end
  return false if vs.count > vs.first.size
  Matrix[*vs].rank.eql?(vs.count)
end

Returns true iff all of vectors are linearly independent.

Vector.independent?(Vector[1,0], Vector[0,1])
  => true

Vector.independent?(Vector[1,2], Vector[2,4])
  => false
new(array) Show source
# File lib/matrix.rb, line 1734
def initialize(array)
  # No checking is done at this point.
  @elements = array
end

::new is private; use Vector[] or ::elements to create.

zero(size) Show source
# File lib/matrix.rb, line 1725
def Vector.zero(size)
  raise ArgumentError, "invalid size (#{size} for 0..)" if size < 0
  array = Array.new(size, 0)
  new convert_to_array(array, false)
end

Return a zero vector.

Vector.zero(3) => Vector[0, 0, 0]

Public Instance Methods

# File lib/matrix.rb, line 1890
def *(x)
  case x
  when Numeric
    els = @elements.collect{|e| e * x}
    self.class.elements(els, false)
  when Matrix
    Matrix.column_vector(self) * x
  when Vector
    Vector.Raise ErrOperationNotDefined, "*", self.class, x.class
  else
    apply_through_coercion(x, __method__)
  end
end

Multiplies the vector by x, where x is a number or a matrix.

# File lib/matrix.rb, line 1907
def +(v)
  case v
  when Vector
    Vector.Raise ErrDimensionMismatch if size != v.size
    els = collect2(v) {|v1, v2|
      v1 + v2
    }
    self.class.elements(els, false)
  when Matrix
    Matrix.column_vector(self) + v
  else
    apply_through_coercion(v, __method__)
  end
end

Vector addition.

# File lib/matrix.rb, line 1955
def +@
  self
end
# File lib/matrix.rb, line 1925
def -(v)
  case v
  when Vector
    Vector.Raise ErrDimensionMismatch if size != v.size
    els = collect2(v) {|v1, v2|
      v1 - v2
    }
    self.class.elements(els, false)
  when Matrix
    Matrix.column_vector(self) - v
  else
    apply_through_coercion(v, __method__)
  end
end

Vector subtraction.

# File lib/matrix.rb, line 1959
def -@
  collect {|e| -e }
end
# File lib/matrix.rb, line 1943
def /(x)
  case x
  when Numeric
    els = @elements.collect{|e| e / x}
    self.class.elements(els, false)
  when Matrix, Vector
    Vector.Raise ErrOperationNotDefined, "/", self.class, x.class
  else
    apply_through_coercion(x, __method__)
  end
end

Vector division.

==(other) Show source
# File lib/matrix.rb, line 1859
def ==(other)
  return false unless Vector === other
  @elements == other.elements
end

Returns true iff the two vectors have the same elements in the same order.

[](i) Show source
# File lib/matrix.rb, line 1744
def [](i)
  @elements[i]
end

Returns element number i (starting at zero) of the vector.

Also aliased as: element, component
angle_with(v) Show source
# File lib/matrix.rb, line 2064
def angle_with(v)
  raise TypeError, "Expected a Vector, got a #{v.class}" unless v.is_a?(Vector)
  Vector.Raise ErrDimensionMismatch if size != v.size
  prod = magnitude * v.magnitude
  raise ZeroVectorError, "Can't get angle of zero vector" if prod == 0

  Math.acos( inner_product(v) / prod )
end

Returns an angle with another vector. Result is within the [0…Math::PI].

Vector[1,0].angle_with(Vector[0,1])
# => Math::PI / 2
clone() Show source
# File lib/matrix.rb, line 1872
def clone
  self.class.elements(@elements)
end

Returns a copy of the vector.

coerce(other) Show source
# File lib/matrix.rb, line 2120
def coerce(other)
  case other
  when Numeric
    return Matrix::Scalar.new(other), self
  else
    raise TypeError, "#{self.class} can't be coerced into #{other.class}"
  end
end

The coerce method provides support for Ruby type coercion. This coercion mechanism is used by Ruby to handle mixed-type numeric operations: it is intended to find a compatible common type between the two operands of the operator. See also Numeric#coerce.

collect() { |e| ... } Show source
# File lib/matrix.rb, line 2019
def collect(&block) # :yield: e
  return to_enum(:collect) unless block_given?
  els = @elements.collect(&block)
  self.class.elements(els, false)
end

Like Array#collect.

Also aliased as: map
collect2(v) { |e1, e2| ... } Show source
# File lib/matrix.rb, line 1801
def collect2(v) # :yield: e1, e2
  raise TypeError, "Integer is not like Vector" if v.kind_of?(Integer)
  Vector.Raise ErrDimensionMismatch if size != v.size
  return to_enum(:collect2, v) unless block_given?
  Array.new(size) do |i|
    yield @elements[i], v[i]
  end
end

Collects (as in Enumerable#collect) over the elements of this vector and v in conjunction.

component(i)
Alias for: []
covector() Show source
# File lib/matrix.rb, line 2080
def covector
  Matrix.row_vector(self)
end

Creates a single-row matrix from this vector.

cross(*vs)
Alias for: cross_product
cross_product(*vs) Show source
# File lib/matrix.rb, line 1994
def cross_product(*vs)
  raise ErrOperationNotDefined, "cross product is not defined on vectors of dimension #{size}" unless size >= 2
  raise ArgumentError, "wrong number of arguments (#{vs.size} for #{size - 2})" unless vs.size == size - 2
  vs.each do |v|
    raise TypeError, "expected Vector, got #{v.class}" unless v.is_a? Vector
    Vector.Raise ErrDimensionMismatch unless v.size == size
  end
  case size
  when 2
    Vector[-@elements[1], @elements[0]]
  when 3
    v = vs[0]
    Vector[ v[2]*@elements[1] - v[1]*@elements[2],
      v[0]*@elements[2] - v[2]*@elements[0],
      v[1]*@elements[0] - v[0]*@elements[1] ]
  else
    rows = self, *vs, Array.new(size) {|i| Vector.basis(size: size, index: i) }
    Matrix.rows(rows).laplace_expansion(row: size - 1)
  end
end

Returns the cross product of this vector with the others.

Vector[1, 0, 0].cross_product Vector[0, 1, 0]   => Vector[0, 0, 1]

It is generalized to other dimensions to return a vector perpendicular to the arguments.

Vector[1, 2].cross_product # => Vector[-2, 1]
Vector[1, 0, 0, 0].cross_product(
   Vector[0, 1, 0, 0],
   Vector[0, 0, 1, 0]
)  #=> Vector[0, 0, 0, 1]
Also aliased as: cross
dot(v)
Alias for: inner_product
each(&block) Show source
# File lib/matrix.rb, line 1778
def each(&block)
  return to_enum(:each) unless block_given?
  @elements.each(&block)
  self
end

Iterate over the elements of this vector

each2(v) { |e1, e2| ... } Show source
# File lib/matrix.rb, line 1787
def each2(v) # :yield: e1, e2
  raise TypeError, "Integer is not like Vector" if v.kind_of?(Integer)
  Vector.Raise ErrDimensionMismatch if size != v.size
  return to_enum(:each2, v) unless block_given?
  size.times do |i|
    yield @elements[i], v[i]
  end
  self
end

Iterate over the elements of this vector and v in conjunction.

element(i)
Alias for: []
elements_to_f() Show source
# File lib/matrix.rb, line 2098
def elements_to_f
  warn "Vector#elements_to_f is deprecated", uplevel: 1
  map(&:to_f)
end
elements_to_i() Show source
# File lib/matrix.rb, line 2103
def elements_to_i
  warn "Vector#elements_to_i is deprecated", uplevel: 1
  map(&:to_i)
end
elements_to_r() Show source
# File lib/matrix.rb, line 2108
def elements_to_r
  warn "Vector#elements_to_r is deprecated", uplevel: 1
  map(&:to_r)
end
eql?(other) Show source
# File lib/matrix.rb, line 1864
def eql?(other)
  return false unless Vector === other
  @elements.eql? other.elements
end
hash() Show source
# File lib/matrix.rb, line 1879
def hash
  @elements.hash
end

Returns a hash-code for the vector.

independent?(*vs) Show source
# File lib/matrix.rb, line 1841
def independent?(*vs)
  self.class.independent?(self, *vs)
end

Returns true iff all of vectors are linearly independent.

Vector[1,0].independent?(Vector[0,1])
  => true

Vector[1,2].independent?(Vector[2,4])
  => false
inner_product(v) Show source
# File lib/matrix.rb, line 1971
def inner_product(v)
  Vector.Raise ErrDimensionMismatch if size != v.size

  p = 0
  each2(v) {|v1, v2|
    p += v1 * v2.conj
  }
  p
end

Returns the inner product of this vector with the other.

Vector[4,7].inner_product Vector[10,1]  => 47
Also aliased as: dot
inspect() Show source
# File lib/matrix.rb, line 2143
def inspect
  "Vector" + @elements.inspect
end

Overrides Object#inspect

magnitude() Show source
# File lib/matrix.rb, line 2030
def magnitude
  Math.sqrt(@elements.inject(0) {|v, e| v + e.abs2})
end

Returns the modulus (Pythagorean distance) of the vector.

Vector[5,8,2].r => 9.643650761
Also aliased as: r, norm
map()
Alias for: collect
map2(v) { |e1, e2| ... } Show source
# File lib/matrix.rb, line 2039
def map2(v, &block) # :yield: e1, e2
  return to_enum(:map2, v) unless block_given?
  els = collect2(v, &block)
  self.class.elements(els, false)
end

Like #collect2, but returns a Vector instead of an Array.

norm()
Alias for: magnitude
normalize() Show source
# File lib/matrix.rb, line 2053
def normalize
  n = magnitude
  raise ZeroVectorError, "Zero vectors can not be normalized" if n == 0
  self / n
end

Returns a new vector with the same direction but with norm 1.

v = Vector[5,8,2].normalize
# => Vector[0.5184758473652127, 0.8295613557843402, 0.20739033894608505]
v.norm => 1.0
r()
Alias for: magnitude
round(ndigits=0) Show source
# File lib/matrix.rb, line 1760
def round(ndigits=0)
  map{|e| e.round(ndigits)}
end

Returns a vector with entries rounded to the given precision (see Float#round)

size() Show source
# File lib/matrix.rb, line 1767
def size
  @elements.size
end

Returns the number of elements in the vector.

to_a() Show source
# File lib/matrix.rb, line 2087
def to_a
  @elements.dup
end

Returns the elements of the vector in an array.

to_matrix() Show source
# File lib/matrix.rb, line 2094
def to_matrix
  Matrix.column_vector(self)
end

Return a single-column matrix from this vector

to_s() Show source
# File lib/matrix.rb, line 2136
def to_s
  "Vector[" + @elements.join(", ") + "]"
end

Overrides Object#to_s

zero?() Show source
# File lib/matrix.rb, line 1848
def zero?
  all?(&:zero?)
end

Returns true iff all elements are zero.

Private Instance Methods

[]=(i, v) Show source
# File lib/matrix.rb, line 1750
def []=(i, v)
  @elements[i]= v
end
Also aliased as: set_element, set_component
set_component(i, v)
Alias for: []=
set_element(i, v)
Alias for: []=

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.