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