rect()
Returns an array containing matrices corresponding to the real and imaginary parts of the matrix
m.rect == [m.real, m.imag] # ==> true for all matrices m
# File lib/matrix.rb, line 1439 def rect [real, imag] end