Method: Stick::Vector#transpose

Defined in:
lib/stick/matrix.rb

#transposeObject Also known as: t

Return the matrix column coresponding to the vector transpose



151
152
153
# File 'lib/stick/matrix.rb', line 151

def transpose
  Matrix[self.to_a]
end