Method: Vector#covector

Defined in:
lib/matrix.rb

#covectorObject

Creates a single-row matrix from this vector.



2113
2114
2115
# File 'lib/matrix.rb', line 2113

def covector
  Matrix.row_vector(self)
end