Module JBLAS::ComplexMatrixMixin
In: lib/jblas/mixin_complex_matrix.rb

Mixin defining some extra methods for complex matrices.

Collected in MatrixMixin.

Methods

conj   conj!   dotc   dotu   h   hermitian   imag   real  

Public Instance methods

Compute complex conjugate.

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 47
    def conj; JAVA_METHOD; end

Compute complex conjugate (in-place).

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 50
    def conj!; JAVA_METHOD; end

Compute transposed scalar product (self.t * other).

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 56
    def dotc; JAVA_METHOD; end

Compute complex conjugate scalar product (self.h * other).

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 53
    def dotu(other); JAVA_METHOD; end

Compute the hermitian transpose (transpose and complex conjugate). See hermitian.

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 41
    def h; hermitian; end

Compute the hermitian transpose (transpoe and complex conjugate).

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 44
    def hermitian; JAVA_METHOD; end

Get only the imaginary part.

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 62
    def imag; JAVA_METHOD; end

Get only the real part.

[Source]

# File lib/jblas/mixin_complex_matrix.rb, line 59
    def real; JAVA_METHOD; end

[Validate]