Uses of Class
org.apache.commons.math3.exception.MathUnsupportedOperationException

Packages that use MathUnsupportedOperationException
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. 
 

Uses of MathUnsupportedOperationException in org.apache.commons.math3.geometry
 

Methods in org.apache.commons.math3.geometry that throw MathUnsupportedOperationException
 Space Space.getSubSpace()
          Get the n-1 dimension subspace of this space.
 

Uses of MathUnsupportedOperationException in org.apache.commons.math3.geometry.euclidean.oned
 

Methods in org.apache.commons.math3.geometry.euclidean.oned that throw MathUnsupportedOperationException
 Space Euclidean1D.getSubSpace()
          Get the n-1 dimension subspace of this space.
 

Uses of MathUnsupportedOperationException in org.apache.commons.math3.linear
 

Methods in org.apache.commons.math3.linear that throw MathUnsupportedOperationException
 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.
 

Uses of MathUnsupportedOperationException in org.apache.commons.math3.stat.correlation
 

Methods in org.apache.commons.math3.stat.correlation that throw MathUnsupportedOperationException
 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 The Apache Software Foundation. All Rights Reserved.