| Package | Description |
|---|---|
| org.jscience.mathematics.vector |
| Modifier and Type | Method and Description |
|---|---|
ComplexMatrix |
ComplexMatrix.adjoint() |
ComplexMatrix |
ComplexMatrix.copy() |
ComplexMatrix |
ComplexMatrix.inverse() |
ComplexMatrix |
ComplexMatrix.minus(Matrix<Complex> that) |
ComplexMatrix |
ComplexMatrix.opposite() |
ComplexMatrix |
ComplexMatrix.plus(Matrix<Complex> that) |
ComplexMatrix |
ComplexMatrix.tensor(Matrix<Complex> that) |
ComplexMatrix |
ComplexMatrix.times(Complex k) |
ComplexMatrix |
ComplexMatrix.times(Matrix<Complex> that) |
ComplexMatrix |
ComplexMatrix.transpose() |
static ComplexMatrix |
ComplexMatrix.valueOf(Complex[][] elements)
Returns a complex matrix from the specified 2-dimensional array.
|
static ComplexMatrix |
ComplexMatrix.valueOf(ComplexVector... rows)
Returns a complex matrix holding the specified row vectors
(column vectors if
transposed). |
static ComplexMatrix |
ComplexMatrix.valueOf(List<ComplexVector> rows)
Returns a complex matrix holding the row vectors from the specified
collection (column vectors if
transposed). |
static ComplexMatrix |
ComplexMatrix.valueOf(Matrix<Complex> that)
Returns a complex matrix equivalent to the specified matrix.
|