Method: FastMatrix::Matrix#imaginary
- Defined in:
- lib/matrix/matrix.rb
#imaginary ⇒ Object Also known as: imag
Returns the imaginary part of the matrix. Always returns a zero matrix
73 74 75 |
# File 'lib/matrix/matrix.rb', line 73 def imaginary() Matrix.zero(row_count, column_count) end |