2004-02-01 12:27:17 +03:00
|
|
|
#--
|
2009-03-06 06:56:38 +03:00
|
|
|
# matrix.rb -
|
2005-12-09 19:10:45 +03:00
|
|
|
# $Release Version: 1.0$
|
|
|
|
# $Revision: 1.13 $
|
1998-01-16 15:13:05 +03:00
|
|
|
# Original Version from Smalltalk-80 version
|
2004-02-01 12:27:17 +03:00
|
|
|
# on July 23, 1985 at 8:37:17 am
|
|
|
|
# by Keiju ISHITSUKA
|
|
|
|
#++
|
1998-01-16 15:13:05 +03:00
|
|
|
#
|
2004-02-01 12:27:17 +03:00
|
|
|
# = matrix.rb
|
1998-01-16 15:13:05 +03:00
|
|
|
#
|
2004-02-01 12:27:17 +03:00
|
|
|
# An implementation of Matrix and Vector classes.
|
1999-01-20 07:59:39 +03:00
|
|
|
#
|
2004-02-01 12:27:17 +03:00
|
|
|
# Author:: Keiju ISHITSUKA
|
2009-03-06 06:56:38 +03:00
|
|
|
# Documentation:: Gavin Sinclair (sourced from <i>Ruby in a Nutshell</i> (Matsumoto, O'Reilly))
|
1999-01-20 07:59:39 +03:00
|
|
|
#
|
2009-03-06 06:56:38 +03:00
|
|
|
# See classes Matrix and Vector for documentation.
|
1999-01-20 07:59:39 +03:00
|
|
|
#
|
2004-02-01 12:27:17 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
require "e2mmap.rb"
|
|
|
|
|
2004-02-01 12:27:17 +03:00
|
|
|
module ExceptionForMatrix # :nodoc:
|
1999-08-13 09:45:20 +04:00
|
|
|
extend Exception2MessageMapper
|
1998-01-16 15:13:05 +03:00
|
|
|
def_e2message(TypeError, "wrong argument type %s (expected %s)")
|
|
|
|
def_e2message(ArgumentError, "Wrong # of arguments(%d for %d)")
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
def_exception("ErrDimensionMismatch", "\#{self.name} dimension mismatch")
|
1998-01-16 15:13:05 +03:00
|
|
|
def_exception("ErrNotRegular", "Not Regular Matrix")
|
2010-01-27 17:28:47 +03:00
|
|
|
def_exception("ErrOperationNotDefined", "Operation(%s) can\\'t be defined: %s op %s")
|
|
|
|
def_exception("ErrOperationNotImplemented", "Sorry, Operation(%s) not implemented: %s op %s")
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2004-02-01 12:27:17 +03:00
|
|
|
# The +Matrix+ class represents a mathematical matrix, and provides methods for creating
|
|
|
|
# special-case matrices (zero, identity, diagonal, singular, vector), operating on them
|
|
|
|
# arithmetically and algebraically, and determining their mathematical properties (trace, rank,
|
|
|
|
# inverse, determinant).
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
# Note that matrices must be rectangular, otherwise an ErrDimensionMismatch is raised.
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
# Also note that the determinant of integer matrices may be approximated unless you
|
2004-02-01 12:27:17 +03:00
|
|
|
# also <tt>require 'mathn'</tt>. This may be fixed in the future.
|
|
|
|
#
|
|
|
|
# == Method Catalogue
|
|
|
|
#
|
|
|
|
# To create a matrix:
|
|
|
|
# * <tt> Matrix[*rows] </tt>
|
|
|
|
# * <tt> Matrix.[](*rows) </tt>
|
|
|
|
# * <tt> Matrix.rows(rows, copy = true) </tt>
|
|
|
|
# * <tt> Matrix.columns(columns) </tt>
|
|
|
|
# * <tt> Matrix.diagonal(*values) </tt>
|
|
|
|
# * <tt> Matrix.scalar(n, value) </tt>
|
|
|
|
# * <tt> Matrix.identity(n) </tt>
|
|
|
|
# * <tt> Matrix.unit(n) </tt>
|
|
|
|
# * <tt> Matrix.I(n) </tt>
|
|
|
|
# * <tt> Matrix.zero(n) </tt>
|
|
|
|
# * <tt> Matrix.row_vector(row) </tt>
|
|
|
|
# * <tt> Matrix.column_vector(column) </tt>
|
|
|
|
#
|
2009-03-06 06:56:38 +03:00
|
|
|
# To access Matrix elements/columns/rows/submatrices/properties:
|
2004-02-01 12:27:17 +03:00
|
|
|
# * <tt> [](i, j) </tt>
|
|
|
|
# * <tt> #row_size </tt>
|
|
|
|
# * <tt> #column_size </tt>
|
|
|
|
# * <tt> #row(i) </tt>
|
|
|
|
# * <tt> #column(j) </tt>
|
|
|
|
# * <tt> #collect </tt>
|
|
|
|
# * <tt> #map </tt>
|
|
|
|
# * <tt> #minor(*param) </tt>
|
|
|
|
#
|
|
|
|
# Properties of a matrix:
|
|
|
|
# * <tt> #regular? </tt>
|
|
|
|
# * <tt> #singular? </tt>
|
|
|
|
# * <tt> #square? </tt>
|
|
|
|
#
|
|
|
|
# Matrix arithmetic:
|
|
|
|
# * <tt> *(m) </tt>
|
|
|
|
# * <tt> +(m) </tt>
|
|
|
|
# * <tt> -(m) </tt>
|
|
|
|
# * <tt> #/(m) </tt>
|
|
|
|
# * <tt> #inverse </tt>
|
|
|
|
# * <tt> #inv </tt>
|
|
|
|
# * <tt> ** </tt>
|
|
|
|
#
|
|
|
|
# Matrix functions:
|
|
|
|
# * <tt> #determinant </tt>
|
|
|
|
# * <tt> #det </tt>
|
|
|
|
# * <tt> #rank </tt>
|
|
|
|
# * <tt> #trace </tt>
|
|
|
|
# * <tt> #tr </tt>
|
|
|
|
# * <tt> #transpose </tt>
|
|
|
|
# * <tt> #t </tt>
|
|
|
|
#
|
|
|
|
# Conversion to other data types:
|
|
|
|
# * <tt> #coerce(other) </tt>
|
|
|
|
# * <tt> #row_vectors </tt>
|
|
|
|
# * <tt> #column_vectors </tt>
|
|
|
|
# * <tt> #to_a </tt>
|
|
|
|
#
|
|
|
|
# String representations:
|
|
|
|
# * <tt> #to_s </tt>
|
|
|
|
# * <tt> #inspect </tt>
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
class Matrix
|
2005-12-09 19:10:45 +03:00
|
|
|
@RCS_ID='-$Id: matrix.rb,v 1.13 2001/12/09 14:22:23 keiju Exp keiju $-'
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
# extend Exception2MessageMapper
|
1998-01-16 15:13:05 +03:00
|
|
|
include ExceptionForMatrix
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
# instance creations
|
|
|
|
private_class_method :new
|
2009-10-20 17:35:15 +04:00
|
|
|
attr_reader :rows
|
|
|
|
protected :rows
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a matrix where each argument is a row.
|
|
|
|
# Matrix[ [25, 93], [-1, 66] ]
|
|
|
|
# => 25 93
|
|
|
|
# -1 66
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.[](*rows)
|
2009-10-20 17:35:15 +04:00
|
|
|
Matrix.rows(rows, false)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a matrix where +rows+ is an array of arrays, each of which is a row
|
2009-09-16 08:39:37 +04:00
|
|
|
# of the matrix. If the optional argument +copy+ is false, use the given
|
2003-01-20 10:16:01 +03:00
|
|
|
# arrays as the internal structure of the matrix without copying.
|
|
|
|
# Matrix.rows([[25, 93], [-1, 66]])
|
|
|
|
# => 25 93
|
|
|
|
# -1 66
|
2009-09-16 08:39:37 +04:00
|
|
|
#
|
2000-07-10 08:49:24 +04:00
|
|
|
def Matrix.rows(rows, copy = true)
|
2009-10-20 17:35:15 +04:00
|
|
|
rows = Matrix.convert_to_array(rows)
|
|
|
|
rows.map! do |row|
|
|
|
|
Matrix.convert_to_array(row, copy)
|
|
|
|
end
|
|
|
|
size = (rows[0] || []).size
|
|
|
|
rows.each do |row|
|
|
|
|
Matrix.Raise ErrDimensionMismatch, "element size differs (#{row.size} should be #{size})" unless row.size == size
|
|
|
|
end
|
|
|
|
new rows, size
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a matrix using +columns+ as an array of column vectors.
|
|
|
|
# Matrix.columns([[25, 93], [-1, 66]])
|
|
|
|
# => 25 -1
|
|
|
|
# 93 66
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.columns(columns)
|
2009-10-20 23:01:44 +04:00
|
|
|
Matrix.rows(columns, false).transpose
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a matrix where the diagonal elements are composed of +values+.
|
|
|
|
# Matrix.diagonal(9, 5, -3)
|
|
|
|
# => 9 0 0
|
|
|
|
# 0 5 0
|
|
|
|
# 0 0 -3
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.diagonal(*values)
|
|
|
|
size = values.size
|
2009-09-16 08:36:37 +04:00
|
|
|
rows = (0 ... size).collect {|j|
|
1998-01-16 15:13:05 +03:00
|
|
|
row = Array.new(size).fill(0, 0, size)
|
|
|
|
row[j] = values[j]
|
|
|
|
row
|
|
|
|
}
|
2009-10-20 17:35:15 +04:00
|
|
|
new rows
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates an +n+ by +n+ diagonal matrix where each diagonal element is
|
|
|
|
# +value+.
|
|
|
|
# Matrix.scalar(2, 5)
|
|
|
|
# => 5 0
|
|
|
|
# 0 5
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.scalar(n, value)
|
|
|
|
Matrix.diagonal(*Array.new(n).fill(value, 0, n))
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates an +n+ by +n+ identity matrix.
|
|
|
|
# Matrix.identity(2)
|
|
|
|
# => 1 0
|
|
|
|
# 0 1
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.identity(n)
|
|
|
|
Matrix.scalar(n, 1)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
class << Matrix
|
1998-01-16 15:13:05 +03:00
|
|
|
alias unit identity
|
|
|
|
alias I identity
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates an +n+ by +n+ zero matrix.
|
|
|
|
# Matrix.zero(2)
|
|
|
|
# => 0 0
|
|
|
|
# 0 0
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.zero(n)
|
|
|
|
Matrix.scalar(n, 0)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a single-row matrix where the values of that row are as given in
|
|
|
|
# +row+.
|
|
|
|
# Matrix.row_vector([4,5,6])
|
|
|
|
# => 4 5 6
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.row_vector(row)
|
2009-10-20 17:35:15 +04:00
|
|
|
row = Matrix.convert_to_array(row)
|
|
|
|
new [row]
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a single-column matrix where the values of that column are as given
|
|
|
|
# in +column+.
|
|
|
|
# Matrix.column_vector([4,5,6])
|
|
|
|
# => 4
|
|
|
|
# 5
|
|
|
|
# 6
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Matrix.column_vector(column)
|
2009-10-20 17:35:15 +04:00
|
|
|
column = Matrix.convert_to_array(column)
|
|
|
|
new [column].transpose, 1
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Creates a empty matrix of +row_size+ x +column_size+.
|
|
|
|
# +row_size+ or +column_size+ must be 0.
|
2009-10-20 23:01:31 +04:00
|
|
|
#
|
|
|
|
# m = Matrix.empty(2, 0)
|
|
|
|
# m == Matrix[ [], [] ]
|
|
|
|
# => true
|
|
|
|
# n = Matrix.empty(0, 3)
|
|
|
|
# n == Matrix.columns([ [], [], [] ])
|
|
|
|
# => true
|
|
|
|
# m * n
|
|
|
|
# => Matrix[[0, 0, 0], [0, 0, 0]]
|
2009-10-20 17:35:15 +04:00
|
|
|
#
|
|
|
|
def Matrix.empty(row_size = 0, column_size = 0)
|
|
|
|
Matrix.Raise ErrDimensionMismatch if column_size != 0 && row_size != 0
|
|
|
|
|
|
|
|
new([[]]*row_size, column_size)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
# Matrix.new is private; use Matrix.rows, columns, [], etc... to create.
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
def initialize(rows, column_size = rows[0].size)
|
|
|
|
# No checking is done at this point. rows must be an Array of Arrays.
|
|
|
|
# column_size must be the size of the first row, if there is one,
|
|
|
|
# otherwise it *must* be specified and can be any integer >= 0
|
|
|
|
@rows = rows
|
|
|
|
@column_size = column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-10-20 17:35:15 +04:00
|
|
|
def new_matrix(rows, column_size = rows[0].size) # :nodoc:
|
|
|
|
Matrix.send(:new, rows, column_size) # bypass privacy of Matrix.new
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-10-20 17:35:15 +04:00
|
|
|
private :new_matrix
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns element (+i+,+j+) of the matrix. That is: row +i+, column +j+.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def [](i, j)
|
2009-10-20 17:35:15 +04:00
|
|
|
@rows.fetch(i){return nil}[j]
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2005-12-09 19:10:45 +03:00
|
|
|
alias element []
|
|
|
|
alias component []
|
|
|
|
|
|
|
|
def []=(i, j, v)
|
|
|
|
@rows[i][j] = v
|
|
|
|
end
|
|
|
|
alias set_element []=
|
|
|
|
alias set_component []=
|
|
|
|
private :[]=, :set_element, :set_component
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the number of rows.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def row_size
|
|
|
|
@rows.size
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
# Returns the number of columns.
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
attr_reader :column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns row vector number +i+ of the matrix as a Vector (starting at 0 like
|
|
|
|
# an array). When a block is given, the elements of that vector are iterated.
|
|
|
|
#
|
2009-09-16 08:36:37 +04:00
|
|
|
def row(i, &block) # :yield: e
|
2000-06-28 12:31:35 +04:00
|
|
|
if block_given?
|
2009-10-20 17:35:15 +04:00
|
|
|
@rows.fetch(i){return self}.each(&block)
|
|
|
|
self
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2009-10-20 17:35:15 +04:00
|
|
|
Vector.elements(@rows.fetch(i){return nil})
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns column vector number +j+ of the matrix as a Vector (starting at 0
|
|
|
|
# like an array). When a block is given, the elements of that vector are
|
|
|
|
# iterated.
|
|
|
|
#
|
|
|
|
def column(j) # :yield: e
|
2000-06-28 12:31:35 +04:00
|
|
|
if block_given?
|
2009-10-24 10:04:56 +04:00
|
|
|
return self if j >= column_size || j < -column_size
|
2009-09-16 08:36:37 +04:00
|
|
|
row_size.times do |i|
|
2004-02-01 12:27:17 +03:00
|
|
|
yield @rows[i][j]
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-10-20 17:35:15 +04:00
|
|
|
self
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2009-10-24 10:04:56 +04:00
|
|
|
return nil if j >= column_size || j < -column_size
|
2009-09-16 08:36:37 +04:00
|
|
|
col = (0 ... row_size).collect {|i|
|
2004-02-01 12:27:17 +03:00
|
|
|
@rows[i][j]
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-07-10 08:49:24 +04:00
|
|
|
Vector.elements(col, false)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns a matrix that is the result of iteration of the given block over all
|
|
|
|
# elements of the matrix.
|
2005-12-09 19:10:45 +03:00
|
|
|
# Matrix[ [1,2], [3,4] ].collect { |e| e**2 }
|
2003-01-20 10:16:01 +03:00
|
|
|
# => 1 4
|
|
|
|
# 9 16
|
|
|
|
#
|
2009-09-17 01:02:54 +04:00
|
|
|
def collect(&block) # :yield: e
|
2009-10-20 17:35:15 +04:00
|
|
|
return to_enum(:collect) unless block_given?
|
2009-09-17 01:02:54 +04:00
|
|
|
rows = @rows.collect{|row| row.collect(&block)}
|
2009-10-20 17:35:15 +04:00
|
|
|
new_matrix rows, column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
alias map collect
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#
|
2003-01-20 10:16:01 +03:00
|
|
|
# Returns a section of the matrix. The parameters are either:
|
|
|
|
# * start_row, nrows, start_col, ncols; OR
|
|
|
|
# * col_range, row_range
|
|
|
|
#
|
|
|
|
# Matrix.diagonal(9, 5, -3).minor(0..1, 0..2)
|
|
|
|
# => 9 0 0
|
|
|
|
# 0 5 0
|
1998-01-16 15:13:05 +03:00
|
|
|
#
|
2009-10-24 10:04:41 +04:00
|
|
|
# Like Array#[], negative indices count backward from the end of the
|
|
|
|
# row or column (-1 is the last element). Returns nil if the starting
|
|
|
|
# row or column is greater than row_size or column_size respectively.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def minor(*param)
|
|
|
|
case param.size
|
|
|
|
when 2
|
|
|
|
from_row = param[0].first
|
2009-10-24 10:04:41 +04:00
|
|
|
from_row += row_size if from_row < 0
|
|
|
|
to_row = param[0].end
|
|
|
|
to_row += row_size if to_row < 0
|
|
|
|
to_row += 1 unless param[0].exclude_end?
|
|
|
|
size_row = to_row - from_row
|
1998-01-16 15:13:05 +03:00
|
|
|
from_col = param[1].first
|
2009-10-24 10:04:41 +04:00
|
|
|
from_col += column_size if from_col < 0
|
|
|
|
to_col = param[1].end
|
|
|
|
to_col += column_size if to_col < 0
|
|
|
|
to_col += 1 unless param[1].exclude_end?
|
|
|
|
size_col = to_col - from_col
|
1998-01-16 15:13:05 +03:00
|
|
|
when 4
|
2009-09-16 08:36:37 +04:00
|
|
|
from_row, size_row, from_col, size_col = param
|
2009-10-24 10:04:41 +04:00
|
|
|
return nil if size_row < 0 || size_col < 0
|
|
|
|
from_row += row_size if from_row < 0
|
|
|
|
from_col += column_size if from_col < 0
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
1999-08-13 09:45:20 +04:00
|
|
|
Matrix.Raise ArgumentError, param.inspect
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-10-24 10:04:41 +04:00
|
|
|
return nil if from_row > row_size || from_col > column_size || from_row < 0 || from_col < 0
|
2008-12-18 10:54:50 +03:00
|
|
|
rows = @rows[from_row, size_row].collect{|row|
|
1998-01-16 15:13:05 +03:00
|
|
|
row[from_col, size_col]
|
|
|
|
}
|
2009-10-20 17:35:15 +04:00
|
|
|
new_matrix rows, column_size - from_col
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# TESTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns +true+ if this is a regular matrix.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def regular?
|
|
|
|
square? and rank == column_size
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns +true+ is this is a singular (i.e. non-regular) matrix.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def singular?
|
|
|
|
not regular?
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
# Returns +true+ is this is a square matrix.
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def square?
|
|
|
|
column_size == row_size
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# OBJECT METHODS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns +true+ if and only if the two matrices contain equal elements.
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def ==(other)
|
2000-07-10 08:49:24 +04:00
|
|
|
return false unless Matrix === other
|
2009-10-20 17:35:15 +04:00
|
|
|
rows == other.rows
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2009-10-20 17:35:15 +04:00
|
|
|
|
2008-09-15 16:02:39 +04:00
|
|
|
def eql?(other)
|
|
|
|
return false unless Matrix === other
|
2009-10-20 17:35:15 +04:00
|
|
|
rows.eql? other.rows
|
2008-09-15 16:02:39 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2008-09-15 16:02:39 +04:00
|
|
|
def compare_by_row_vectors(rows, comparison = :==)
|
2000-07-10 08:49:24 +04:00
|
|
|
return false unless @rows.size == rows.size
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
@rows.size.times do |i|
|
2008-09-15 16:02:39 +04:00
|
|
|
return false unless @rows[i].send(comparison, rows[i])
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2000-07-10 08:49:24 +04:00
|
|
|
true
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns a clone of the matrix, so that the contents of each do not reference
|
|
|
|
# identical objects.
|
2009-10-20 17:35:15 +04:00
|
|
|
# There should be no good reason to do this since Matrices are immutable.
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def clone
|
2009-10-20 17:35:15 +04:00
|
|
|
new_matrix @rows.map{|row| row.dup}, column_size
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns a hash-code for the matrix.
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def hash
|
2009-09-16 08:36:37 +04:00
|
|
|
@rows.hash
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# ARITHMETIC -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Matrix multiplication.
|
|
|
|
# Matrix[[2,4], [6,8]] * Matrix.identity(2)
|
|
|
|
# => 2 4
|
|
|
|
# 6 8
|
|
|
|
#
|
2001-11-03 16:41:57 +03:00
|
|
|
def *(m) # m is matrix or vector or number
|
1998-01-16 15:13:05 +03:00
|
|
|
case(m)
|
|
|
|
when Numeric
|
2008-12-18 10:54:50 +03:00
|
|
|
rows = @rows.collect {|row|
|
|
|
|
row.collect {|e|
|
2004-02-01 12:27:17 +03:00
|
|
|
e * m
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-10-20 17:35:15 +04:00
|
|
|
return new_matrix rows, column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector
|
|
|
|
m = Matrix.column_vector(m)
|
|
|
|
r = self * m
|
|
|
|
return r.column(0)
|
|
|
|
when Matrix
|
1999-08-13 09:45:20 +04:00
|
|
|
Matrix.Raise ErrDimensionMismatch if column_size != m.row_size
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
rows = (0 ... row_size).collect {|i|
|
|
|
|
(0 ... m.column_size).collect {|j|
|
2009-09-17 01:02:54 +04:00
|
|
|
(0 ... column_size).inject(0) do |vij, k|
|
|
|
|
vij + self[i, k] * m[k, j]
|
2004-02-01 12:27:17 +03:00
|
|
|
end
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-10-20 17:35:15 +04:00
|
|
|
return new_matrix rows, m.column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
|
|
|
x, y = m.coerce(self)
|
|
|
|
return x * y
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Matrix addition.
|
|
|
|
# Matrix.scalar(2,5) + Matrix[[1,0], [-4,7]]
|
|
|
|
# => 6 0
|
|
|
|
# -4 12
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def +(m)
|
|
|
|
case m
|
|
|
|
when Numeric
|
2010-01-27 17:28:47 +03:00
|
|
|
Matrix.Raise ErrOperationNotDefined, "+", self.class, m.class
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector
|
|
|
|
m = Matrix.column_vector(m)
|
|
|
|
when Matrix
|
|
|
|
else
|
|
|
|
x, y = m.coerce(self)
|
|
|
|
return x + y
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
Matrix.Raise ErrDimensionMismatch unless row_size == m.row_size and column_size == m.column_size
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
rows = (0 ... row_size).collect {|i|
|
|
|
|
(0 ... column_size).collect {|j|
|
2004-02-01 12:27:17 +03:00
|
|
|
self[i, j] + m[i, j]
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
2009-10-20 17:35:15 +04:00
|
|
|
new_matrix rows, column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Matrix subtraction.
|
|
|
|
# Matrix[[1,5], [4,2]] - Matrix[[9,3], [-4,1]]
|
|
|
|
# => -8 2
|
|
|
|
# 8 1
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def -(m)
|
|
|
|
case m
|
|
|
|
when Numeric
|
2010-01-27 17:28:47 +03:00
|
|
|
Matrix.Raise ErrOperationNotDefined, "-", self.class, m.class
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector
|
|
|
|
m = Matrix.column_vector(m)
|
|
|
|
when Matrix
|
|
|
|
else
|
|
|
|
x, y = m.coerce(self)
|
|
|
|
return x - y
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
Matrix.Raise ErrDimensionMismatch unless row_size == m.row_size and column_size == m.column_size
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
rows = (0 ... row_size).collect {|i|
|
|
|
|
(0 ... column_size).collect {|j|
|
2004-02-01 12:27:17 +03:00
|
|
|
self[i, j] - m[i, j]
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
2009-10-20 17:35:15 +04:00
|
|
|
new_matrix rows, column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Matrix division (multiplication by the inverse).
|
|
|
|
# Matrix[[7,6], [3,9]] / Matrix[[2,9], [3,1]]
|
|
|
|
# => -7 1
|
|
|
|
# -3 -6
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def /(other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
2008-12-18 10:54:50 +03:00
|
|
|
rows = @rows.collect {|row|
|
|
|
|
row.collect {|e|
|
2004-02-01 12:27:17 +03:00
|
|
|
e / other
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2009-10-20 17:35:15 +04:00
|
|
|
return new_matrix rows, column_size
|
1999-01-20 07:59:39 +03:00
|
|
|
when Matrix
|
|
|
|
return self * other.inverse
|
|
|
|
else
|
|
|
|
x, y = other.coerce(self)
|
2009-09-16 12:24:15 +04:00
|
|
|
return x / y
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the inverse of the matrix.
|
2010-01-09 23:35:28 +03:00
|
|
|
# Matrix[[-1, -1], [0, -1]].inverse
|
2003-01-20 10:16:01 +03:00
|
|
|
# => -1 1
|
|
|
|
# 0 -1
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def inverse
|
1999-08-13 09:45:20 +04:00
|
|
|
Matrix.Raise ErrDimensionMismatch unless square?
|
1998-01-16 15:13:05 +03:00
|
|
|
Matrix.I(row_size).inverse_from(self)
|
|
|
|
end
|
|
|
|
alias inv inverse
|
2003-01-20 10:16:01 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Not for public consumption?
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def inverse_from(src)
|
2009-09-16 08:36:37 +04:00
|
|
|
size = row_size
|
1998-01-16 15:13:05 +03:00
|
|
|
a = src.to_a
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
size.times do |k|
|
2007-03-19 08:39:07 +03:00
|
|
|
i = k
|
|
|
|
akk = a[k][k].abs
|
2009-09-16 08:36:37 +04:00
|
|
|
(k+1 ... size).each do |j|
|
2007-03-19 08:39:07 +03:00
|
|
|
v = a[j][k].abs
|
|
|
|
if v > akk
|
|
|
|
i = j
|
|
|
|
akk = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
Matrix.Raise ErrNotRegular if akk == 0
|
|
|
|
if i != k
|
2004-02-01 12:27:17 +03:00
|
|
|
a[i], a[k] = a[k], a[i]
|
|
|
|
@rows[i], @rows[k] = @rows[k], @rows[i]
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2007-03-19 08:39:07 +03:00
|
|
|
akk = a[k][k]
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2010-01-26 01:08:29 +03:00
|
|
|
size.times do |ii|
|
|
|
|
next if ii == k
|
|
|
|
q = a[ii][k].quo(akk)
|
|
|
|
a[ii][k] = 0
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
(k + 1 ... size).each do |j|
|
2010-01-26 01:08:29 +03:00
|
|
|
a[ii][j] -= a[k][j] * q
|
2004-02-01 12:27:17 +03:00
|
|
|
end
|
2009-09-16 08:36:37 +04:00
|
|
|
size.times do |j|
|
2010-01-26 01:08:29 +03:00
|
|
|
@rows[ii][j] -= @rows[k][j] * q
|
2004-02-01 12:27:17 +03:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
(k + 1 ... size).each do |j|
|
2005-11-01 16:04:35 +03:00
|
|
|
a[k][j] = a[k][j].quo(akk)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-09-16 08:36:37 +04:00
|
|
|
size.times do |j|
|
2005-11-01 16:04:35 +03:00
|
|
|
@rows[k][j] = @rows[k][j].quo(akk)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
self
|
|
|
|
end
|
|
|
|
#alias reciprocal inverse
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Matrix exponentiation. Defined for integer powers only. Equivalent to
|
|
|
|
# multiplying the matrix by itself N times.
|
|
|
|
# Matrix[[7,6], [3,9]] ** 2
|
|
|
|
# => 67 96
|
|
|
|
# 48 99
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def ** (other)
|
|
|
|
if other.kind_of?(Integer)
|
|
|
|
x = self
|
|
|
|
if other <= 0
|
2004-02-01 12:27:17 +03:00
|
|
|
x = self.inverse
|
|
|
|
return Matrix.identity(self.column_size) if other == 0
|
|
|
|
other = -other
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-10-25 00:55:40 +04:00
|
|
|
z = nil
|
|
|
|
loop do
|
|
|
|
z = z ? z * x : x if other[0] == 1
|
|
|
|
return z if (other >>= 1).zero?
|
|
|
|
x *= x
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
elsif other.kind_of?(Float) || defined?(Rational) && other.kind_of?(Rational)
|
2010-01-27 17:28:47 +03:00
|
|
|
Matrix.Raise ErrOperationNotImplemented, "**", self.class, other.class
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2010-01-27 17:28:47 +03:00
|
|
|
Matrix.Raise ErrOperationNotDefined, "**", self.class, other.class
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# MATRIX FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the determinant of the matrix. If the matrix is not square, the
|
2009-09-16 08:39:37 +04:00
|
|
|
# result is 0. This method's algorithm is Gaussian elimination method
|
2005-12-09 19:10:45 +03:00
|
|
|
# and using Numeric#quo(). Beware that using Float values, with their
|
|
|
|
# usual lack of precision, can affect the value returned by this method. Use
|
|
|
|
# Rational values or Matrix#det_e instead if this is important to you.
|
|
|
|
#
|
2003-01-20 10:16:01 +03:00
|
|
|
# Matrix[[7,6], [3,9]].determinant
|
2009-09-16 08:39:37 +04:00
|
|
|
# => 45.0
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def determinant
|
|
|
|
return 0 unless square?
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
size = row_size
|
1998-01-16 15:13:05 +03:00
|
|
|
a = to_a
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
det = 1
|
2009-09-16 08:36:37 +04:00
|
|
|
size.times do |k|
|
1998-01-16 15:13:05 +03:00
|
|
|
if (akk = a[k][k]) == 0
|
2010-01-26 01:08:29 +03:00
|
|
|
i = (k+1 ... size).find {|ii|
|
|
|
|
a[ii][k] != 0
|
2009-09-17 01:02:54 +04:00
|
|
|
}
|
2010-01-27 16:49:58 +03:00
|
|
|
return 0 if i.nil?
|
|
|
|
a[i], a[k] = a[k], a[i]
|
2004-02-01 12:27:17 +03:00
|
|
|
akk = a[k][k]
|
|
|
|
det *= -1
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2008-12-17 13:25:29 +03:00
|
|
|
|
2010-01-26 01:08:29 +03:00
|
|
|
(k + 1 ... size).each do |ii|
|
|
|
|
q = a[ii][k].quo(akk)
|
2009-09-16 08:36:37 +04:00
|
|
|
(k + 1 ... size).each do |j|
|
2010-01-26 01:08:29 +03:00
|
|
|
a[ii][j] -= a[k][j] * q
|
2004-02-01 12:27:17 +03:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
det *= akk
|
2008-12-18 10:54:50 +03:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
det
|
|
|
|
end
|
|
|
|
alias det determinant
|
2005-12-09 19:10:45 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the determinant of the matrix. If the matrix is not square, the
|
2009-09-16 08:39:37 +04:00
|
|
|
# result is 0. This method's algorithm is Gaussian elimination method.
|
|
|
|
# This method uses Euclidean algorithm. If all elements are integer,
|
2005-12-09 19:10:45 +03:00
|
|
|
# really exact value. But, if an element is a float, can't return
|
2009-03-06 06:56:38 +03:00
|
|
|
# exact value.
|
2005-12-09 19:10:45 +03:00
|
|
|
#
|
|
|
|
# Matrix[[7,6], [3,9]].determinant
|
|
|
|
# => 63
|
|
|
|
#
|
|
|
|
def determinant_e
|
|
|
|
return 0 unless square?
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-09-16 08:36:37 +04:00
|
|
|
size = row_size
|
2005-12-09 19:10:45 +03:00
|
|
|
a = to_a
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
det = 1
|
2009-09-16 08:36:37 +04:00
|
|
|
size.times do |k|
|
2005-12-09 19:10:45 +03:00
|
|
|
if a[k][k].zero?
|
2010-01-26 01:08:29 +03:00
|
|
|
i = (k+1 ... size).find {|ii|
|
|
|
|
a[ii][k] != 0
|
2009-09-17 01:02:54 +04:00
|
|
|
}
|
|
|
|
return 0 if i.nil?
|
2005-12-09 19:10:45 +03:00
|
|
|
a[i], a[k] = a[k], a[i]
|
|
|
|
det *= -1
|
|
|
|
end
|
2008-12-17 13:25:29 +03:00
|
|
|
|
2010-01-26 01:08:29 +03:00
|
|
|
(k + 1 ... size).each do |ii|
|
|
|
|
q = a[ii][k].quo(a[k][k])
|
2009-09-16 08:36:37 +04:00
|
|
|
(k ... size).each do |j|
|
2010-01-26 01:08:29 +03:00
|
|
|
a[ii][j] -= a[k][j] * q
|
2005-12-09 19:10:45 +03:00
|
|
|
end
|
2010-01-26 01:08:29 +03:00
|
|
|
unless a[ii][k].zero?
|
|
|
|
a[ii], a[k] = a[k], a[ii]
|
2005-12-09 19:10:45 +03:00
|
|
|
det *= -1
|
|
|
|
redo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
det *= a[k][k]
|
2008-12-18 10:54:50 +03:00
|
|
|
end
|
2005-12-09 19:10:45 +03:00
|
|
|
det
|
|
|
|
end
|
|
|
|
alias det_e determinant_e
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the rank of the matrix. Beware that using Float values,
|
|
|
|
# probably return faild value. Use Rational values or Matrix#rank_e
|
|
|
|
# for getting exact result.
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Matrix[[7,6], [3,9]].rank
|
|
|
|
# => 2
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def rank
|
|
|
|
if column_size > row_size
|
|
|
|
a = transpose.to_a
|
2000-09-01 07:31:05 +04:00
|
|
|
a_column_size = row_size
|
|
|
|
a_row_size = column_size
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
|
|
|
a = to_a
|
2000-09-01 07:31:05 +04:00
|
|
|
a_column_size = column_size
|
|
|
|
a_row_size = row_size
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
rank = 0
|
2009-09-16 08:36:37 +04:00
|
|
|
a_column_size.times do |k|
|
1998-01-16 15:13:05 +03:00
|
|
|
if (akk = a[k][k]) == 0
|
2010-01-26 01:08:29 +03:00
|
|
|
i = (k+1 ... a_row_size).find {|ii|
|
|
|
|
a[ii][k] != 0
|
2009-09-17 01:02:54 +04:00
|
|
|
}
|
|
|
|
if i
|
2004-02-01 12:27:17 +03:00
|
|
|
a[i], a[k] = a[k], a[i]
|
|
|
|
akk = a[k][k]
|
|
|
|
else
|
2010-01-26 01:08:29 +03:00
|
|
|
i = (k+1 ... a_column_size).find {|ii|
|
|
|
|
a[k][ii] != 0
|
2009-09-17 01:02:54 +04:00
|
|
|
}
|
|
|
|
next if i.nil?
|
|
|
|
(k ... a_column_size).each do |j|
|
|
|
|
a[j][k], a[j][i] = a[j][i], a[j][k]
|
2004-02-01 12:27:17 +03:00
|
|
|
end
|
2009-09-17 01:02:54 +04:00
|
|
|
akk = a[k][k]
|
2004-02-01 12:27:17 +03:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2008-12-17 13:25:29 +03:00
|
|
|
|
2010-01-26 01:08:29 +03:00
|
|
|
(k + 1 ... a_row_size).each do |ii|
|
|
|
|
q = a[ii][k].quo(akk)
|
2009-09-16 08:36:37 +04:00
|
|
|
(k + 1... a_column_size).each do |j|
|
2010-01-26 01:08:29 +03:00
|
|
|
a[ii][j] -= a[k][j] * q
|
2004-02-01 12:27:17 +03:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
rank += 1
|
2009-09-16 08:36:37 +04:00
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
return rank
|
|
|
|
end
|
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
#
|
|
|
|
# Returns the rank of the matrix. This method uses Euclidean
|
2009-09-16 08:39:37 +04:00
|
|
|
# algorithm. If all elements are integer, really exact value. But, if
|
2009-03-06 06:56:38 +03:00
|
|
|
# an element is a float, can't return exact value.
|
2005-12-09 19:10:45 +03:00
|
|
|
#
|
|
|
|
# Matrix[[7,6], [3,9]].rank
|
|
|
|
# => 2
|
|
|
|
#
|
|
|
|
def rank_e
|
|
|
|
a = to_a
|
|
|
|
a_column_size = column_size
|
|
|
|
a_row_size = row_size
|
|
|
|
pi = 0
|
2009-09-16 08:36:37 +04:00
|
|
|
a_column_size.times do |j|
|
2005-12-09 19:10:45 +03:00
|
|
|
if i = (pi ... a_row_size).find{|i0| !a[i0][j].zero?}
|
|
|
|
if i != pi
|
|
|
|
a[pi], a[i] = a[i], a[pi]
|
|
|
|
end
|
|
|
|
(pi + 1 ... a_row_size).each do |k|
|
2006-12-05 12:56:18 +03:00
|
|
|
q = a[k][j].quo(a[pi][j])
|
2005-12-09 19:10:45 +03:00
|
|
|
(pi ... a_column_size).each do |j0|
|
|
|
|
a[k][j0] -= q * a[pi][j0]
|
|
|
|
end
|
|
|
|
if k > pi && !a[k][j].zero?
|
|
|
|
a[k], a[pi] = a[pi], a[k]
|
|
|
|
redo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
pi += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
pi
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the trace (sum of diagonal elements) of the matrix.
|
|
|
|
# Matrix[[7,6], [3,9]].trace
|
|
|
|
# => 16
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def trace
|
2009-10-20 17:35:15 +04:00
|
|
|
Matrix.Raise ErrDimensionMismatch unless square?
|
2009-09-17 01:02:54 +04:00
|
|
|
(0...column_size).inject(0) do |tr, i|
|
|
|
|
tr + @rows[i][i]
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
alias tr trace
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the transpose of the matrix.
|
|
|
|
# Matrix[[1,2], [3,4], [5,6]]
|
|
|
|
# => 1 2
|
|
|
|
# 3 4
|
|
|
|
# 5 6
|
|
|
|
# Matrix[[1,2], [3,4], [5,6]].transpose
|
|
|
|
# => 1 3 5
|
|
|
|
# 2 4 6
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def transpose
|
2009-10-24 10:05:10 +04:00
|
|
|
return Matrix.empty(column_size, 0) if row_size.zero?
|
2009-10-20 17:35:15 +04:00
|
|
|
new_matrix @rows.transpose, row_size
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
alias t transpose
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# CONVERTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# FIXME: describe #coerce.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def coerce(other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
|
|
|
return Scalar.new(other), self
|
1999-08-13 09:45:20 +04:00
|
|
|
else
|
2002-10-02 20:45:35 +04:00
|
|
|
raise TypeError, "#{self.class} can't be coerced into #{other.class}"
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns an array of the row vectors of the matrix. See Vector.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def row_vectors
|
2009-09-16 08:36:37 +04:00
|
|
|
(0 ... row_size).collect {|i|
|
1998-01-16 15:13:05 +03:00
|
|
|
row(i)
|
|
|
|
}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns an array of the column vectors of the matrix. See Vector.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def column_vectors
|
2009-09-16 08:36:37 +04:00
|
|
|
(0 ... column_size).collect {|i|
|
1998-01-16 15:13:05 +03:00
|
|
|
column(i)
|
|
|
|
}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns an array of arrays that describe the rows of the matrix.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def to_a
|
2009-09-16 08:36:37 +04:00
|
|
|
@rows.collect{|row| row.dup}
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
def elements_to_f
|
|
|
|
collect{|e| e.to_f}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
def elements_to_i
|
|
|
|
collect{|e| e.to_i}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
def elements_to_r
|
|
|
|
collect{|e| e.to_r}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# PRINTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Overrides Object#to_s
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def to_s
|
2009-10-20 17:35:15 +04:00
|
|
|
if row_size == 0 || column_size == 0
|
|
|
|
"Matrix.empty(#{row_size}, #{column_size})"
|
|
|
|
else
|
|
|
|
"Matrix[" + @rows.collect{|row|
|
|
|
|
"[" + row.collect{|e| e.to_s}.join(", ") + "]"
|
|
|
|
}.join(", ")+"]"
|
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2009-10-20 17:35:15 +04:00
|
|
|
alias_method :inspect_org, :inspect
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Overrides Object#inspect
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def inspect
|
2009-10-20 17:35:15 +04:00
|
|
|
if row_size == 0 || column_size == 0
|
|
|
|
"Matrix.empty(#{row_size}, #{column_size})"
|
|
|
|
else
|
|
|
|
"Matrix#{@rows.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Converts the obj to an Array. If copy is set to true
|
|
|
|
# a copy of obj will be made if necessary.
|
|
|
|
#
|
|
|
|
def Matrix.convert_to_array(obj, copy = false)
|
|
|
|
case obj
|
|
|
|
when Array
|
|
|
|
copy ? obj.dup : obj
|
|
|
|
when Vector
|
|
|
|
obj.to_a
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
converted = obj.to_ary
|
|
|
|
rescue Exception => e
|
|
|
|
raise TypeError, "can't convert #{obj.class} into an Array (#{e.message})"
|
|
|
|
end
|
|
|
|
raise TypeError, "#{obj.class}#to_ary should return an Array" unless converted.is_a? Array
|
|
|
|
converted
|
|
|
|
end
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
# Private CLASS
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
class Scalar < Numeric # :nodoc:
|
1998-01-16 15:13:05 +03:00
|
|
|
include ExceptionForMatrix
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
def initialize(value)
|
|
|
|
@value = value
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
# ARITHMETIC
|
|
|
|
def +(other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
2004-02-01 12:27:17 +03:00
|
|
|
Scalar.new(@value + other)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector, Matrix
|
2010-01-27 17:28:47 +03:00
|
|
|
Scalar.Raise ErrOperationNotDefined, "+", @value.class, other.class
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2004-02-01 12:27:17 +03:00
|
|
|
x, y = other.coerce(self)
|
|
|
|
x + y
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
def -(other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
2004-02-01 12:27:17 +03:00
|
|
|
Scalar.new(@value - other)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector, Matrix
|
2010-01-27 17:28:47 +03:00
|
|
|
Scalar.Raise ErrOperationNotDefined, "-", @value.class, other.class
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2004-02-01 12:27:17 +03:00
|
|
|
x, y = other.coerce(self)
|
|
|
|
x - y
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
def *(other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
2004-02-01 12:27:17 +03:00
|
|
|
Scalar.new(@value * other)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector, Matrix
|
2004-02-01 12:27:17 +03:00
|
|
|
other.collect{|e| @value * e}
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2004-02-01 12:27:17 +03:00
|
|
|
x, y = other.coerce(self)
|
|
|
|
x * y
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
def / (other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
2004-02-01 12:27:17 +03:00
|
|
|
Scalar.new(@value / other)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector
|
2010-01-27 17:28:47 +03:00
|
|
|
Scalar.Raise ErrOperationNotDefined, "/", @value.class, other.class
|
1998-01-16 15:13:05 +03:00
|
|
|
when Matrix
|
2009-09-16 08:39:37 +04:00
|
|
|
self * other.inverse
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2004-02-01 12:27:17 +03:00
|
|
|
x, y = other.coerce(self)
|
2005-11-01 16:04:35 +03:00
|
|
|
x.quo(y)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
def ** (other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
2004-02-01 12:27:17 +03:00
|
|
|
Scalar.new(@value ** other)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Vector
|
2010-01-27 17:28:47 +03:00
|
|
|
Scalar.Raise ErrOperationNotDefined, "**", @value.class, other.class
|
1998-01-16 15:13:05 +03:00
|
|
|
when Matrix
|
2010-01-27 17:28:47 +03:00
|
|
|
#other.powered_by(self)
|
|
|
|
Scalar.Raise ErrOperationNotImplemented, "**", @value.class, other.class
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2004-02-01 12:27:17 +03:00
|
|
|
x, y = other.coerce(self)
|
|
|
|
x ** y
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-02-01 12:27:17 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# The +Vector+ class represents a mathematical vector, which is useful in its own right, and
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# also constitutes a row or column of a Matrix.
|
2004-02-01 12:27:17 +03:00
|
|
|
#
|
|
|
|
# == Method Catalogue
|
|
|
|
#
|
|
|
|
# To create a Vector:
|
|
|
|
# * <tt> Vector.[](*array) </tt>
|
|
|
|
# * <tt> Vector.elements(array, copy = true) </tt>
|
|
|
|
#
|
|
|
|
# To access elements:
|
|
|
|
# * <tt> [](i) </tt>
|
|
|
|
#
|
|
|
|
# To enumerate the elements:
|
|
|
|
# * <tt> #each2(v) </tt>
|
|
|
|
# * <tt> #collect2(v) </tt>
|
|
|
|
#
|
|
|
|
# Vector arithmetic:
|
|
|
|
# * <tt> *(x) "is matrix or number" </tt>
|
|
|
|
# * <tt> +(v) </tt>
|
|
|
|
# * <tt> -(v) </tt>
|
|
|
|
#
|
|
|
|
# Vector functions:
|
|
|
|
# * <tt> #inner_product(v) </tt>
|
|
|
|
# * <tt> #collect </tt>
|
|
|
|
# * <tt> #map </tt>
|
|
|
|
# * <tt> #map2(v) </tt>
|
|
|
|
# * <tt> #r </tt>
|
|
|
|
# * <tt> #size </tt>
|
|
|
|
#
|
|
|
|
# Conversion to other data types:
|
|
|
|
# * <tt> #covector </tt>
|
|
|
|
# * <tt> #to_a </tt>
|
|
|
|
# * <tt> #coerce(other) </tt>
|
1998-01-16 15:13:05 +03:00
|
|
|
#
|
2004-02-01 12:27:17 +03:00
|
|
|
# String representations:
|
|
|
|
# * <tt> #to_s </tt>
|
|
|
|
# * <tt> #inspect </tt>
|
1998-01-16 15:13:05 +03:00
|
|
|
#
|
|
|
|
class Vector
|
|
|
|
include ExceptionForMatrix
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#INSTANCE CREATION
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
private_class_method :new
|
2009-10-20 17:35:15 +04:00
|
|
|
attr_reader :elements
|
|
|
|
protected :elements
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a Vector from a list of elements.
|
|
|
|
# Vector[7, 4, ...]
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def Vector.[](*array)
|
2009-10-20 17:35:15 +04:00
|
|
|
new Matrix.convert_to_array(array, copy = false)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Creates a vector from an Array. The optional second argument specifies
|
|
|
|
# whether the array itself or a copy is used internally.
|
|
|
|
#
|
2000-07-10 08:49:24 +04:00
|
|
|
def Vector.elements(array, copy = true)
|
2009-10-20 17:35:15 +04:00
|
|
|
new Matrix.convert_to_array(array, copy)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
# Vector.new is private; use Vector[] or Vector.elements to create.
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
2009-10-20 17:35:15 +04:00
|
|
|
def initialize(array)
|
|
|
|
# No checking is done at this point.
|
|
|
|
@elements = array
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# ACCESSING
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns element number +i+ (starting at zero) of the vector.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def [](i)
|
|
|
|
@elements[i]
|
|
|
|
end
|
2005-12-09 19:10:45 +03:00
|
|
|
alias element []
|
|
|
|
alias component []
|
|
|
|
|
|
|
|
def []=(i, v)
|
|
|
|
@elements[i]= v
|
|
|
|
end
|
|
|
|
alias set_element []=
|
|
|
|
alias set_component []=
|
|
|
|
private :[]=, :set_element, :set_component
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the number of elements in the vector.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def size
|
|
|
|
@elements.size
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-19 03:19:47 +04:00
|
|
|
# ENUMERATIONS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
2003-01-20 10:16:01 +03:00
|
|
|
#++
|
|
|
|
|
|
|
|
#
|
|
|
|
# Iterate over the elements of this vector and +v+ in conjunction.
|
|
|
|
#
|
|
|
|
def each2(v) # :yield: e1, e2
|
1999-08-13 09:45:20 +04:00
|
|
|
Vector.Raise ErrDimensionMismatch if size != v.size
|
2009-12-19 05:07:00 +03:00
|
|
|
return to_enum(:each2, v) unless block_given?
|
2009-09-16 08:36:37 +04:00
|
|
|
size.times do |i|
|
1998-01-16 15:13:05 +03:00
|
|
|
yield @elements[i], v[i]
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Collects (as in Enumerable#collect) over the elements of this vector and +v+
|
|
|
|
# in conjunction.
|
|
|
|
#
|
|
|
|
def collect2(v) # :yield: e1, e2
|
1999-08-13 09:45:20 +04:00
|
|
|
Vector.Raise ErrDimensionMismatch if size != v.size
|
2009-12-19 05:07:00 +03:00
|
|
|
return to_enum(:collect2, v) unless block_given?
|
2009-09-16 08:36:37 +04:00
|
|
|
(0 ... size).collect do |i|
|
1998-01-16 15:13:05 +03:00
|
|
|
yield @elements[i], v[i]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# COMPARING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns +true+ iff the two vectors have the same elements in the same order.
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def ==(other)
|
2000-07-10 08:49:24 +04:00
|
|
|
return false unless Vector === other
|
2009-10-20 17:35:15 +04:00
|
|
|
@elements == other.elements
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2009-10-20 17:35:15 +04:00
|
|
|
|
2008-09-15 16:02:39 +04:00
|
|
|
def eql?(other)
|
|
|
|
return false unless Vector === other
|
2009-10-20 17:35:15 +04:00
|
|
|
@elements.eql? other.elements
|
2008-09-15 16:02:39 +04:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2008-09-15 16:02:39 +04:00
|
|
|
def compare_by(elements, comparison = :==)
|
|
|
|
@elements.send(comparison, elements)
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Return a copy of the vector.
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def clone
|
|
|
|
Vector.elements(@elements)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Return a hash-code for the vector.
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def hash
|
|
|
|
@elements.hash
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# ARITHMETIC -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Multiplies the vector by +x+, where +x+ is a number or another vector.
|
|
|
|
#
|
|
|
|
def *(x)
|
1998-01-16 15:13:05 +03:00
|
|
|
case x
|
|
|
|
when Numeric
|
|
|
|
els = @elements.collect{|e| e * x}
|
2000-07-10 08:49:24 +04:00
|
|
|
Vector.elements(els, false)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Matrix
|
2001-12-09 17:11:30 +03:00
|
|
|
Matrix.column_vector(self) * x
|
2010-01-27 17:28:47 +03:00
|
|
|
when Vector
|
|
|
|
Vector.Raise ErrOperationNotDefined, "*", self.class, x.class
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
2001-12-09 17:11:30 +03:00
|
|
|
s, x = x.coerce(self)
|
1998-01-16 15:13:05 +03:00
|
|
|
s * x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Vector addition.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def +(v)
|
|
|
|
case v
|
|
|
|
when Vector
|
1999-08-13 09:45:20 +04:00
|
|
|
Vector.Raise ErrDimensionMismatch if size != v.size
|
2008-12-18 10:54:50 +03:00
|
|
|
els = collect2(v) {|v1, v2|
|
2004-02-01 12:27:17 +03:00
|
|
|
v1 + v2
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-07-10 08:49:24 +04:00
|
|
|
Vector.elements(els, false)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Matrix
|
|
|
|
Matrix.column_vector(self) + v
|
|
|
|
else
|
1999-08-13 09:45:20 +04:00
|
|
|
s, x = v.coerce(self)
|
1998-01-16 15:13:05 +03:00
|
|
|
s + x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Vector subtraction.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def -(v)
|
|
|
|
case v
|
|
|
|
when Vector
|
1999-08-13 09:45:20 +04:00
|
|
|
Vector.Raise ErrDimensionMismatch if size != v.size
|
2008-12-18 10:54:50 +03:00
|
|
|
els = collect2(v) {|v1, v2|
|
2004-02-01 12:27:17 +03:00
|
|
|
v1 - v2
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-07-10 08:49:24 +04:00
|
|
|
Vector.elements(els, false)
|
1998-01-16 15:13:05 +03:00
|
|
|
when Matrix
|
|
|
|
Matrix.column_vector(self) - v
|
|
|
|
else
|
1999-08-13 09:45:20 +04:00
|
|
|
s, x = v.coerce(self)
|
1998-01-16 15:13:05 +03:00
|
|
|
s - x
|
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2010-01-27 17:28:47 +03:00
|
|
|
#
|
|
|
|
# Vector division.
|
|
|
|
#
|
|
|
|
def /(x)
|
|
|
|
case x
|
|
|
|
when Numeric
|
|
|
|
els = @elements.collect{|e| e / x}
|
|
|
|
Vector.elements(els, false)
|
|
|
|
when Matrix, Vector
|
|
|
|
Vector.Raise ErrOperationNotDefined, "/", self.class, x.class
|
|
|
|
else
|
|
|
|
s, x = x.coerce(self)
|
|
|
|
s / x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# VECTOR FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the inner product of this vector with the other.
|
|
|
|
# Vector[4,7].inner_product Vector[10,1] => 47
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def inner_product(v)
|
1999-08-13 09:45:20 +04:00
|
|
|
Vector.Raise ErrDimensionMismatch if size != v.size
|
2009-03-06 06:56:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
p = 0
|
2008-12-18 10:54:50 +03:00
|
|
|
each2(v) {|v1, v2|
|
1998-01-16 15:13:05 +03:00
|
|
|
p += v1 * v2
|
|
|
|
}
|
|
|
|
p
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Like Array#collect.
|
|
|
|
#
|
2009-09-16 08:36:37 +04:00
|
|
|
def collect(&block) # :yield: e
|
2009-10-20 17:35:15 +04:00
|
|
|
return to_enum(:collect) unless block_given?
|
2009-09-16 08:36:37 +04:00
|
|
|
els = @elements.collect(&block)
|
2000-07-10 08:49:24 +04:00
|
|
|
Vector.elements(els, false)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
alias map collect
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Like Vector#collect2, but returns a Vector instead of an Array.
|
|
|
|
#
|
2009-09-16 08:36:37 +04:00
|
|
|
def map2(v, &block) # :yield: e1, e2
|
2009-12-19 05:07:00 +03:00
|
|
|
return to_enum(:map2, v) unless block_given?
|
2009-09-16 08:36:37 +04:00
|
|
|
els = collect2(v, &block)
|
2000-07-10 08:49:24 +04:00
|
|
|
Vector.elements(els, false)
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the modulus (Pythagorean distance) of the vector.
|
|
|
|
# Vector[5,8,2].r => 9.643650761
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def r
|
2009-09-16 08:36:37 +04:00
|
|
|
Math.sqrt(@elements.inject(0) {|v, e| v + e*e})
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
1998-01-16 15:13:05 +03:00
|
|
|
# CONVERTING
|
2003-01-20 10:16:01 +03:00
|
|
|
#++
|
|
|
|
|
|
|
|
#
|
|
|
|
# Creates a single-row matrix from this vector.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def covector
|
|
|
|
Matrix.row_vector(self)
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Returns the elements of the vector in an array.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def to_a
|
|
|
|
@elements.dup
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
def elements_to_f
|
|
|
|
collect{|e| e.to_f}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
def elements_to_i
|
|
|
|
collect{|e| e.to_i}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2005-12-09 19:10:45 +03:00
|
|
|
def elements_to_r
|
|
|
|
collect{|e| e.to_r}
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# FIXME: describe Vector#coerce.
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def coerce(other)
|
|
|
|
case other
|
|
|
|
when Numeric
|
2007-09-18 17:12:47 +04:00
|
|
|
return Matrix::Scalar.new(other), self
|
1999-08-13 09:45:20 +04:00
|
|
|
else
|
2002-10-02 20:45:35 +04:00
|
|
|
raise TypeError, "#{self.class} can't be coerced into #{other.class}"
|
1998-01-16 15:13:05 +03:00
|
|
|
end
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#--
|
|
|
|
# PRINTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
#++
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Overrides Object#to_s
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def to_s
|
|
|
|
"Vector[" + @elements.join(", ") + "]"
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2003-01-20 10:16:01 +03:00
|
|
|
#
|
|
|
|
# Overrides Object#inspect
|
|
|
|
#
|
1998-01-16 15:13:05 +03:00
|
|
|
def inspect
|
|
|
|
str = "Vector"+@elements.inspect
|
|
|
|
end
|
|
|
|
end
|
2003-01-20 10:16:01 +03:00
|
|
|
|
|
|
|
# Documentation comments:
|
|
|
|
# - Matrix#coerce and Vector#coerce need to be documented
|