| Package | Description |
|---|---|
| org.jscience.mathematics.vector |
| Modifier and Type | Method and Description |
|---|---|
ComplexVector |
ComplexVector.copy() |
ComplexVector |
ComplexMatrix.getColumn(int j) |
ComplexVector |
ComplexMatrix.getDiagonal() |
ComplexVector |
ComplexMatrix.getRow(int i) |
ComplexVector |
ComplexVector.minus(Vector<Complex> that) |
ComplexVector |
ComplexVector.opposite() |
ComplexVector |
ComplexVector.plus(Vector<Complex> that) |
ComplexVector |
ComplexVector.times(Complex k) |
ComplexVector |
ComplexMatrix.times(Vector<Complex> v) |
static ComplexVector |
ComplexVector.valueOf(Complex... elements)
Returns a new vector holding the specified complex numbers.
|
static ComplexVector |
ComplexVector.valueOf(List<Complex> elements)
Returns a new vector holding the elements from the specified
collection.
|
static ComplexVector |
ComplexVector.valueOf(Vector<Complex> that)
Returns a
ComplexVector instance equivalent to the
specified vector. |
ComplexVector |
ComplexMatrix.vectorization() |
| Modifier and Type | Method and Description |
|---|---|
static ComplexMatrix |
ComplexMatrix.valueOf(ComplexVector... rows)
Returns a complex matrix holding the specified row vectors
(column vectors if
transposed). |
| Modifier and Type | Method and Description |
|---|---|
static ComplexMatrix |
ComplexMatrix.valueOf(List<ComplexVector> rows)
Returns a complex matrix holding the row vectors from the specified
collection (column vectors if
transposed). |