Method: Matrix#real
- Defined in:
- lib/matrix.rb
#real ⇒ Object
Returns the real part of the matrix.
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
=> 1+2i i 0
1 2 3
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].real
=> 1 0 0
1 2 3
1430 1431 1432 |
# File 'lib/matrix.rb', line 1430 def real collect(&:real) end |