Class: Matrix

Inherits:
Object show all
Defined in:
lib/classifier/extensions/vector.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.diag(diagonal_elements) ⇒ Object



44
45
46
# File 'lib/classifier/extensions/vector.rb', line 44

def self.diag(diagonal_elements)
  Matrix.diagonal(*diagonal_elements)
end

Instance Method Details

#[]=(row_index, col_index, value) ⇒ Object



103
104
105
# File 'lib/classifier/extensions/vector.rb', line 103

def []=(row_index, col_index, value)
  @rows[row_index][col_index] = value
end

#SV_decomp(max_sweeps = 20) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/classifier/extensions/vector.rb', line 50

def SV_decomp(max_sweeps = 20)
  q_matrix = if row_size >= column_size
               trans * self
             else
               self * trans
             end

  q_rotation_matrix = q_matrix.dup
  v_matrix = Matrix.identity(q_matrix.row_size)
  iteration_count = 0
  previous_s_matrix = nil

  loop do
    iteration_count += 1
    (0...q_rotation_matrix.row_size - 1).each do |row|
      (1..q_rotation_matrix.row_size - 1).each do |col|
        next if row == col

        angle = Math.atan((2.to_r * q_rotation_matrix[row,
                                                      col]) / (q_rotation_matrix[row,
                                                                                 row] - q_rotation_matrix[col,
                                                                                                          col])) / 2.0
        cosine = Math.cos(angle)
        sine = Math.sin(angle)
        rotation_matrix = Matrix.identity(q_rotation_matrix.row_size)
        rotation_matrix[row, row] = cosine
        rotation_matrix[row, col] = -sine
        rotation_matrix[col, row] = sine
        rotation_matrix[col, col] = cosine
        q_rotation_matrix = rotation_matrix.trans * q_rotation_matrix * rotation_matrix
        v_matrix *= rotation_matrix
      end
    end
    previous_s_matrix = q_rotation_matrix.dup if iteration_count == 1
    sum_of_differences = 0.to_r
    if iteration_count > 1
      q_rotation_matrix.row_size.times do |r|
        difference = (q_rotation_matrix[r, r] - previous_s_matrix[r, r]).abs
        sum_of_differences += difference.to_r if difference > 0.001
      end
      previous_s_matrix = q_rotation_matrix.dup
    end
    break if (sum_of_differences <= 0.001 && iteration_count > 1) || iteration_count >= max_sweeps
  end

  singular_values = []
  q_rotation_matrix.row_size.times do |r|
    singular_values << Math.sqrt(q_rotation_matrix[r, r].to_f)
  end
  u_matrix = (row_size >= column_size ? self : trans) * v_matrix * Matrix.diagonal(*singular_values).inverse
  [u_matrix, v_matrix, singular_values]
end