Package | Description |
---|---|
org.apache.commons.math3.geometry |
This package is the top level package for geometry.
|
org.apache.commons.math3.geometry.euclidean.oned |
This package provides basic 1D geometry components.
|
org.apache.commons.math3.linear |
Linear algebra support.
|
org.apache.commons.math3.stat.correlation |
Correlations/Covariance computations.
|
Modifier and Type | Method and Description |
---|---|
Space |
Space.getSubSpace()
Get the n-1 dimension subspace of this space.
|
Modifier and Type | Method and Description |
---|---|
Space |
Euclidean1D.getSubSpace()
Get the n-1 dimension subspace of this space.
|
Modifier and Type | Method and Description |
---|---|
void |
DiagonalMatrix.addToEntry(int row,
int column,
double increment)
Adds (in place) the specified value to the specified entry of
this matrix. |
boolean |
RealVector.equals(Object other)
Test for the equality of two real vectors.
|
int |
RealVector.hashCode()
.
|
void |
DiagonalMatrix.multiplyEntry(int row,
int column,
double factor)
Multiplies (in place) the specified entry of
this matrix by the
specified value. |
void |
RealVector.SparseEntryIterator.remove()
Deprecated.
|
void |
DiagonalMatrix.setEntry(int row,
int column,
double value)
Set the entry in the specified row and column.
|
void |
DiagonalMatrix.setSubMatrix(double[][] subMatrix,
int row,
int column)
Replace the submatrix starting at
row, column using data in the
input subMatrix array. |
double |
DiagonalMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor)
Visit (and possibly change) all matrix entries in column order.
|
double |
DiagonalMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn)
Visit (and possibly change) some matrix entries in column order.
|
double |
DiagonalMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor)
Visit (but don't change) all matrix entries in column order.
|
double |
DiagonalMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn)
Visit (but don't change) some matrix entries in column order.
|
double |
DiagonalMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor)
Visit (and possibly change) all matrix entries in row order.
|
double |
DiagonalMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn)
Visit (and possibly change) some matrix entries in row order.
|
double |
DiagonalMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor)
Visit (but don't change) all matrix entries in row order.
|
double |
DiagonalMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor,
int startRow,
int endRow,
int startColumn,
int endColumn)
Visit (but don't change) some matrix entries in row order.
|
Modifier and Type | Method and Description |
---|---|
int |
StorelessCovariance.getN()
This
Covariance method is not supported by a StorelessCovariance ,
since the number of bivariate observations does not have to be the same for different
pairs of covariates - i.e., N as defined in Covariance.getN() is undefined. |
Copyright © 2003-2013 Apache Software Foundation. All Rights Reserved.