Uses of Class
org.apache.commons.math3.exception.OutOfRangeException
Packages that use OutOfRangeException
Package
Description
The
function package contains function objects that wrap the
methods contained in Math, as well as common
mathematical functions such as the gaussian and sinc functions.Univariate real functions interpolation algorithms.
Complex number type and implementations of complex transcendental
functions.
Implementations of common discrete and continuous distributions.
This package provides Genetic Algorithms components and implementations.
This package provides basic geometry components on the 2-sphere.
Linear algebra support.
Random number and random data generators.
Classes providing hypothesis testing.
Classes providing binomial proportion confidence interval construction.
Statistical routines involving multivariate data.
Convenience routines and common data structures used throughout the commons-math library.
-
Uses of OutOfRangeException in org.apache.commons.math3.analysis.function
Methods in org.apache.commons.math3.analysis.function that throw OutOfRangeExceptionModifier and TypeMethodDescriptiondoubleLogit.value(double x) Compute the value of the function.Logit.value(DerivativeStructure t) Simple mathematical function. -
Uses of OutOfRangeException in org.apache.commons.math3.analysis.interpolation
Methods in org.apache.commons.math3.analysis.interpolation that throw OutOfRangeExceptionModifier and TypeMethodDescriptiondoubleBicubicSplineInterpolatingFunction.partialDerivativeX(double x, double y) Deprecated.doubleBicubicSplineInterpolatingFunction.partialDerivativeXX(double x, double y) Deprecated.doubleBicubicSplineInterpolatingFunction.partialDerivativeXY(double x, double y) Deprecated.doubleBicubicSplineInterpolatingFunction.partialDerivativeY(double x, double y) Deprecated.doubleBicubicSplineInterpolatingFunction.partialDerivativeYY(double x, double y) Deprecated.doubleBicubicInterpolatingFunction.value(double x, double y) Compute the value for the function.doubleBicubicSplineInterpolatingFunction.value(double x, double y) Deprecated.Compute the value for the function.doublePiecewiseBicubicSplineInterpolatingFunction.value(double x, double y) Compute the value for the function.doubleTricubicInterpolatingFunction.value(double x, double y, double z) Compute the value for the function.doubleTricubicSplineInterpolatingFunction.value(double x, double y, double z) Deprecated.Compute the value for the function.Constructors in org.apache.commons.math3.analysis.interpolation that throw OutOfRangeExceptionModifierConstructorDescriptionLoessInterpolator(double bandwidth, int robustnessIters, double accuracy) Construct a newLoessInterpolatorwith given bandwidth, number of robustness iterations and accuracy. -
Uses of OutOfRangeException in org.apache.commons.math3.complex
Methods in org.apache.commons.math3.complex that throw OutOfRangeExceptionModifier and TypeMethodDescriptiondoubleRootsOfUnity.getImaginary(int k) Get the imaginary part of thek-thn-th root of unity. -
Uses of OutOfRangeException in org.apache.commons.math3.distribution
Methods in org.apache.commons.math3.distribution that throw OutOfRangeExceptionModifier and TypeMethodDescriptionintAbstractIntegerDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleAbstractRealDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleCauchyDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleConstantRealDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleEnumeratedRealDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleExponentialDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.intGeometricDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleGumbelDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.intIntegerDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleLaplaceDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleLevyDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleLogisticDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleNormalDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleRealDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleTriangularDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.doubleUniformRealDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.Constructors in org.apache.commons.math3.distribution that throw OutOfRangeExceptionModifierConstructorDescriptionPascalDistribution(int r, double p) Create a Pascal distribution with the given number of successes and probability of success.PascalDistribution(RandomGenerator rng, int r, double p) Create a Pascal distribution with the given number of successes and probability of success. -
Uses of OutOfRangeException in org.apache.commons.math3.genetics
Methods in org.apache.commons.math3.genetics that throw OutOfRangeExceptionModifier and TypeMethodDescriptionvoidElitisticListPopulation.setElitismRate(double elitismRate) Sets the elitism rate, i.e.Constructors in org.apache.commons.math3.genetics that throw OutOfRangeExceptionModifierConstructorDescriptionElitisticListPopulation(int populationLimit, double elitismRate) Creates a newElitisticListPopulationinstance and initializes its inner chromosome list.ElitisticListPopulation(List<Chromosome> chromosomes, int populationLimit, double elitismRate) Creates a newElitisticListPopulationinstance.GeneticAlgorithm(CrossoverPolicy crossoverPolicy, double crossoverRate, MutationPolicy mutationPolicy, double mutationRate, SelectionPolicy selectionPolicy) Create a new genetic algorithm.UniformCrossover(double ratio) Creates a newUniformCrossoverpolicy using the given mixing ratio. -
Uses of OutOfRangeException in org.apache.commons.math3.geometry.spherical.twod
Constructors in org.apache.commons.math3.geometry.spherical.twod that throw OutOfRangeException -
Uses of OutOfRangeException in org.apache.commons.math3.linear
Methods in org.apache.commons.math3.linear that throw OutOfRangeExceptionModifier and TypeMethodDescriptionabstract voidAbstractFieldMatrix.addToEntry(int row, int column, T increment) Change an entry in the specified row and column.voidAbstractRealMatrix.addToEntry(int row, int column, double increment) Adds (in place) the specified value to the specified entry ofthismatrix.voidArray2DRowFieldMatrix.addToEntry(int row, int column, T increment) Change an entry in the specified row and column.voidArray2DRowRealMatrix.addToEntry(int row, int column, double increment) Adds (in place) the specified value to the specified entry ofthismatrix.voidArrayRealVector.addToEntry(int index, double increment) Change an entry at the specified index.voidBlockFieldMatrix.addToEntry(int row, int column, T increment) Change an entry in the specified row and column.voidBlockRealMatrix.addToEntry(int row, int column, double increment) Adds (in place) the specified value to the specified entry ofthismatrix.voidDiagonalMatrix.addToEntry(int row, int column, double increment) Adds (in place) the specified value to the specified entry ofthismatrix.voidFieldMatrix.addToEntry(int row, int column, T increment) Change an entry in the specified row and column.voidOpenMapRealMatrix.addToEntry(int row, int column, double increment) Adds (in place) the specified value to the specified entry ofthismatrix.voidRealMatrix.addToEntry(int row, int column, double increment) Adds (in place) the specified value to the specified entry ofthismatrix.voidRealVector.addToEntry(int index, double increment) Change an entry at the specified index.protected voidAbstractFieldMatrix.checkColumnIndex(int column) Check if a column index is valid.static voidMatrixUtils.checkColumnIndex(AnyMatrix m, int column) Check if a column index is valid.protected voidRealVector.checkIndex(int index) Check if an index is valid.protected voidRealVector.checkIndices(int start, int end) Checks that the indices of a subvector are valid.static voidMatrixUtils.checkMatrixIndex(AnyMatrix m, int row, int column) Check if matrix indices are valid.protected voidAbstractFieldMatrix.checkRowIndex(int row) Check if a row index is valid.static voidMatrixUtils.checkRowIndex(AnyMatrix m, int row) Check if a row index is valid.protected voidAbstractFieldMatrix.checkSubMatrixIndex(int[] selectedRows, int[] selectedColumns) Check if submatrix ranges indices are valid.protected voidAbstractFieldMatrix.checkSubMatrixIndex(int startRow, int endRow, int startColumn, int endColumn) Check if submatrix ranges indices are valid.static voidMatrixUtils.checkSubMatrixIndex(AnyMatrix m, int[] selectedRows, int[] selectedColumns) Check if submatrix ranges indices are valid.static voidMatrixUtils.checkSubMatrixIndex(AnyMatrix m, int startRow, int endRow, int startColumn, int endColumn) Check if submatrix ranges indices are valid.voidAbstractFieldMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, T[][] destination) Copy a submatrix.voidAbstractFieldMatrix.copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, T[][] destination) Copy a submatrix.voidAbstractRealMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, double[][] destination) Copy a submatrix.voidAbstractRealMatrix.copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, double[][] destination) Copy a submatrix.voidFieldMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, T[][] destination) Copy a submatrix.voidFieldMatrix.copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, T[][] destination) Copy a submatrix.voidRealMatrix.copySubMatrix(int[] selectedRows, int[] selectedColumns, double[][] destination) Copy a submatrix.voidRealMatrix.copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, double[][] destination) Copy a submatrix.T[]AbstractFieldMatrix.getColumn(int column) Get the entries in column numbercolas an array.double[]AbstractRealMatrix.getColumn(int column) Get the entries at the given column index as an array.T[]BlockFieldMatrix.getColumn(int column) Get the entries in column numbercolas an array.double[]BlockRealMatrix.getColumn(int column) Get the entries at the given column index as an array.T[]FieldMatrix.getColumn(int column) Get the entries in column numbercolas an array.double[]RealMatrix.getColumn(int column) Get the entries at the given column index as an array.AbstractFieldMatrix.getColumnMatrix(int column) Get the entries in column numbercolumnas a column matrix.AbstractRealMatrix.getColumnMatrix(int column) Get the entries at the given column index as a column matrix.BlockFieldMatrix.getColumnMatrix(int column) Get the entries in column numbercolumnas a column matrix.BlockRealMatrix.getColumnMatrix(int column) Get the entries at the given column index as a column matrix.FieldMatrix.getColumnMatrix(int column) Get the entries in column numbercolumnas a column matrix.RealMatrix.getColumnMatrix(int column) Get the entries at the given column index as a column matrix.AbstractFieldMatrix.getColumnVector(int column) Returns the entries in column numbercolumnas a vector.AbstractRealMatrix.getColumnVector(int column) Get the entries at the given column index as a vector.BlockFieldMatrix.getColumnVector(int column) Returns the entries in column numbercolumnas a vector.BlockRealMatrix.getColumnVector(int column) Get the entries at the given column index as a vector.FieldMatrix.getColumnVector(int column) Returns the entries in column numbercolumnas a vector.RealMatrix.getColumnVector(int column) Get the entries at the given column index as a vector.abstract TAbstractFieldMatrix.getEntry(int row, int column) Returns the entry in the specified row and column.abstract doubleAbstractRealMatrix.getEntry(int row, int column) Get the entry in the specified row and column.Array2DRowFieldMatrix.getEntry(int row, int column) Returns the entry in the specified row and column.doubleArray2DRowRealMatrix.getEntry(int row, int column) Get the entry in the specified row and column.doubleArrayRealVector.getEntry(int index) Return the entry at the specified index.BlockFieldMatrix.getEntry(int row, int column) Returns the entry in the specified row and column.doubleBlockRealMatrix.getEntry(int row, int column) Get the entry in the specified row and column.doubleDiagonalMatrix.getEntry(int row, int column) Get the entry in the specified row and column.FieldMatrix.getEntry(int row, int column) Returns the entry in the specified row and column.FieldVector.getEntry(int index) Returns the entry in the specified index.doubleOpenMapRealMatrix.getEntry(int row, int column) Get the entry in the specified row and column.doubleOpenMapRealVector.getEntry(int index) Return the entry at the specified index.doubleRealMatrix.getEntry(int row, int column) Get the entry in the specified row and column.abstract doubleRealVector.getEntry(int index) Return the entry at the specified index.SparseFieldVector.getEntry(int index) Returns the entry in the specified index.T[]AbstractFieldMatrix.getRow(int row) Get the entries in row numberrowas an array.double[]AbstractRealMatrix.getRow(int row) Get the entries at the given row index.T[]BlockFieldMatrix.getRow(int row) Get the entries in row numberrowas an array.double[]BlockRealMatrix.getRow(int row) Get the entries at the given row index.T[]FieldMatrix.getRow(int row) Get the entries in row numberrowas an array.double[]RealMatrix.getRow(int row) Get the entries at the given row index.AbstractFieldMatrix.getRowMatrix(int row) Get the entries in row numberrowas a row matrix.AbstractRealMatrix.getRowMatrix(int row) Get the entries at the given row index as a row matrix.BlockFieldMatrix.getRowMatrix(int row) Get the entries in row numberrowas a row matrix.BlockRealMatrix.getRowMatrix(int row) Get the entries at the given row index as a row matrix.FieldMatrix.getRowMatrix(int row) Get the entries in row numberrowas a row matrix.RealMatrix.getRowMatrix(int row) Get the entries at the given row index as a row matrix.AbstractFieldMatrix.getRowVector(int row) Get the entries in row numberrowas a vector.AbstractRealMatrix.getRowVector(int row) Returns the entries in row numberrowas a vector.BlockFieldMatrix.getRowVector(int row) Get the entries in row numberrowas a vector.BlockRealMatrix.getRowVector(int row) Returns the entries in row numberrowas a vector.FieldMatrix.getRowVector(int row) Get the entries in row numberrowas a vector.RealMatrix.getRowVector(int row) Returns the entries in row numberrowas a vector.AbstractFieldMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns) Get a submatrix.AbstractFieldMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) Get a submatrix.AbstractRealMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns) Gets a submatrix.AbstractRealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) Gets a submatrix.BlockFieldMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) Get a submatrix.BlockRealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) Gets a submatrix.FieldMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns) Get a submatrix.FieldMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) Get a submatrix.RealMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns) Gets a submatrix.RealMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) Gets a submatrix.ArrayFieldVector.getSubVector(int index, int n) Get a subvector from consecutive elements.ArrayRealVector.getSubVector(int index, int n) Get a subvector from consecutive elements.FieldVector.getSubVector(int index, int n) Get a subvector from consecutive elements.OpenMapRealVector.getSubVector(int index, int n) Get a subvector from consecutive elements.abstract RealVectorRealVector.getSubVector(int index, int n) Get a subvector from consecutive elements.SparseFieldVector.getSubVector(int index, int n) Get a subvector from consecutive elements.abstract voidAbstractFieldMatrix.multiplyEntry(int row, int column, T factor) Change an entry in the specified row and column.voidAbstractRealMatrix.multiplyEntry(int row, int column, double factor) Multiplies (in place) the specified entry ofthismatrix by the specified value.voidArray2DRowFieldMatrix.multiplyEntry(int row, int column, T factor) Change an entry in the specified row and column.voidArray2DRowRealMatrix.multiplyEntry(int row, int column, double factor) Multiplies (in place) the specified entry ofthismatrix by the specified value.voidBlockFieldMatrix.multiplyEntry(int row, int column, T factor) Change an entry in the specified row and column.voidBlockRealMatrix.multiplyEntry(int row, int column, double factor) Multiplies (in place) the specified entry ofthismatrix by the specified value.voidDiagonalMatrix.multiplyEntry(int row, int column, double factor) Multiplies (in place) the specified entry ofthismatrix by the specified value.voidFieldMatrix.multiplyEntry(int row, int column, T factor) Change an entry in the specified row and column.voidOpenMapRealMatrix.multiplyEntry(int row, int column, double factor) Multiplies (in place) the specified entry ofthismatrix by the specified value.voidRealMatrix.multiplyEntry(int row, int column, double factor) Multiplies (in place) the specified entry ofthismatrix by the specified value.voidArrayFieldVector.set(int index, ArrayFieldVector<T> v) Set a set of consecutive elements.voidSet the entries in column numbercolumnas a column matrix.voidAbstractRealMatrix.setColumn(int column, double[] array) Sets the specifiedcolumnofthismatrix to the entries of the specifiedarray.voidSet the entries in column numbercolumnas a column matrix.voidBlockRealMatrix.setColumn(int column, double[] array) Sets the specifiedcolumnofthismatrix to the entries of the specifiedarray.voidSet the entries in column numbercolumnas a column matrix.voidRealMatrix.setColumn(int column, double[] array) Sets the specifiedcolumnofthismatrix to the entries of the specifiedarray.voidAbstractFieldMatrix.setColumnMatrix(int column, FieldMatrix<T> matrix) Set the entries in column numbercolumnas a column matrix.voidAbstractRealMatrix.setColumnMatrix(int column, RealMatrix matrix) Sets the specifiedcolumnofthismatrix to the entries of the specified columnmatrix.voidBlockFieldMatrix.setColumnMatrix(int column, FieldMatrix<T> matrix) Set the entries in column numbercolumnas a column matrix.voidBlockRealMatrix.setColumnMatrix(int column, RealMatrix matrix) Sets the specifiedcolumnofthismatrix to the entries of the specified columnmatrix.voidFieldMatrix.setColumnMatrix(int column, FieldMatrix<T> matrix) Set the entries in column numbercolumnas a column matrix.voidRealMatrix.setColumnMatrix(int column, RealMatrix matrix) Sets the specifiedcolumnofthismatrix to the entries of the specified columnmatrix.voidAbstractFieldMatrix.setColumnVector(int column, FieldVector<T> vector) Set the entries in column numbercolumnas a vector.voidAbstractRealMatrix.setColumnVector(int column, RealVector vector) Sets the specifiedcolumnofthismatrix to the entries of the specifiedvector.voidBlockFieldMatrix.setColumnVector(int column, FieldVector<T> vector) Set the entries in column numbercolumnas a vector.voidBlockRealMatrix.setColumnVector(int column, RealVector vector) Sets the specifiedcolumnofthismatrix to the entries of the specifiedvector.voidFieldMatrix.setColumnVector(int column, FieldVector<T> vector) Set the entries in column numbercolumnas a vector.voidRealMatrix.setColumnVector(int column, RealVector vector) Sets the specifiedcolumnofthismatrix to the entries of the specifiedvector.abstract voidSet the entry in the specified row and column.abstract voidAbstractRealMatrix.setEntry(int row, int column, double value) Set the entry in the specified row and column.voidSet the entry in the specified row and column.voidArray2DRowRealMatrix.setEntry(int row, int column, double value) Set the entry in the specified row and column.voidArrayRealVector.setEntry(int index, double value) Set a single element.voidSet the entry in the specified row and column.voidBlockRealMatrix.setEntry(int row, int column, double value) Set the entry in the specified row and column.voidDiagonalMatrix.setEntry(int row, int column, double value) Set the entry in the specified row and column.voidSet the entry in the specified row and column.voidSet a single element.voidOpenMapRealMatrix.setEntry(int row, int column, double value) Set the entry in the specified row and column.voidOpenMapRealVector.setEntry(int index, double value) Set a single element.voidRealMatrix.setEntry(int row, int column, double value) Set the entry in the specified row and column.abstract voidRealVector.setEntry(int index, double value) Set a single element.voidSet a single element.voidSet the entries in row numberrowas a row matrix.voidAbstractRealMatrix.setRow(int row, double[] array) Sets the specifiedrowofthismatrix to the entries of the specifiedarray.voidSet the entries in row numberrowas a row matrix.voidBlockRealMatrix.setRow(int row, double[] array) Sets the specifiedrowofthismatrix to the entries of the specifiedarray.voidSet the entries in row numberrowas a row matrix.voidRealMatrix.setRow(int row, double[] array) Sets the specifiedrowofthismatrix to the entries of the specifiedarray.voidAbstractFieldMatrix.setRowMatrix(int row, FieldMatrix<T> matrix) Set the entries in row numberrowas a row matrix.voidAbstractRealMatrix.setRowMatrix(int row, RealMatrix matrix) Sets the specifiedrowofthismatrix to the entries of the specified rowmatrix.voidBlockFieldMatrix.setRowMatrix(int row, BlockFieldMatrix<T> matrix) Sets the entries in row numberrowas a row matrix.voidBlockFieldMatrix.setRowMatrix(int row, FieldMatrix<T> matrix) Set the entries in row numberrowas a row matrix.voidBlockRealMatrix.setRowMatrix(int row, BlockRealMatrix matrix) Sets the entries in row numberrowas a row matrix.voidBlockRealMatrix.setRowMatrix(int row, RealMatrix matrix) Sets the specifiedrowofthismatrix to the entries of the specified rowmatrix.voidFieldMatrix.setRowMatrix(int row, FieldMatrix<T> matrix) Set the entries in row numberrowas a row matrix.voidRealMatrix.setRowMatrix(int row, RealMatrix matrix) Sets the specifiedrowofthismatrix to the entries of the specified rowmatrix.voidAbstractFieldMatrix.setRowVector(int row, FieldVector<T> vector) Set the entries in row numberrowas a vector.voidAbstractRealMatrix.setRowVector(int row, RealVector vector) Sets the specifiedrowofthismatrix to the entries of the specifiedvector.voidBlockFieldMatrix.setRowVector(int row, FieldVector<T> vector) Set the entries in row numberrowas a vector.voidBlockRealMatrix.setRowVector(int row, RealVector vector) Sets the specifiedrowofthismatrix to the entries of the specifiedvector.voidFieldMatrix.setRowVector(int row, FieldVector<T> vector) Set the entries in row numberrowas a vector.voidRealMatrix.setRowVector(int row, RealVector vector) Sets the specifiedrowofthismatrix to the entries of the specifiedvector.voidAbstractFieldMatrix.setSubMatrix(T[][] subMatrix, int row, int column) Replace the submatrix starting at(row, column)using data in the inputsubMatrixarray.voidAbstractRealMatrix.setSubMatrix(double[][] subMatrix, int row, int column) Replace the submatrix starting atrow, columnusing data in the inputsubMatrixarray.voidArray2DRowFieldMatrix.setSubMatrix(T[][] subMatrix, int row, int column) Replace the submatrix starting at(row, column)using data in the inputsubMatrixarray.voidArray2DRowRealMatrix.setSubMatrix(double[][] subMatrix, int row, int column) Replace the submatrix starting atrow, columnusing data in the inputsubMatrixarray.voidBlockFieldMatrix.setSubMatrix(T[][] subMatrix, int row, int column) Replace the submatrix starting at(row, column)using data in the inputsubMatrixarray.voidBlockRealMatrix.setSubMatrix(double[][] subMatrix, int row, int column) Replace the submatrix starting atrow, columnusing data in the inputsubMatrixarray.voidFieldMatrix.setSubMatrix(T[][] subMatrix, int row, int column) Replace the submatrix starting at(row, column)using data in the inputsubMatrixarray.voidRealMatrix.setSubMatrix(double[][] subMatrix, int row, int column) Replace the submatrix starting atrow, columnusing data in the inputsubMatrixarray.voidArrayFieldVector.setSubVector(int index, FieldVector<T> v) Set a set of consecutive elements.voidArrayRealVector.setSubVector(int index, double[] v) Set a set of consecutive elements.voidArrayRealVector.setSubVector(int index, RealVector v) Set a sequence of consecutive elements.voidFieldVector.setSubVector(int index, FieldVector<T> v) Set a set of consecutive elements.voidOpenMapRealVector.setSubVector(int index, RealVector v) Set a sequence of consecutive elements.abstract voidRealVector.setSubVector(int index, RealVector v) Set a sequence of consecutive elements.voidSparseFieldVector.setSubVector(int index, FieldVector<T> v) Set a set of consecutive elements.AbstractFieldMatrix.walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in column order.AbstractFieldMatrix.walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in column order.doubleAbstractRealMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in column order.doubleAbstractRealMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in column order.Array2DRowFieldMatrix.walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in column order.Array2DRowFieldMatrix.walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in column order.doubleArray2DRowRealMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in column order.doubleArray2DRowRealMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in column order.FieldMatrix.walkInColumnOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in column order.FieldMatrix.walkInColumnOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in column order.doubleRealMatrix.walkInColumnOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in column order.doubleRealMatrix.walkInColumnOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in column order.ArrayFieldVector.walkInDefaultOrder(FieldVectorChangingVisitor<T> visitor, int start, int end) Visits (and possibly alters) some entries of this vector in default order (increasing index).ArrayFieldVector.walkInDefaultOrder(FieldVectorPreservingVisitor<T> visitor, int start, int end) Visits (but does not alter) some entries of this vector in default order (increasing index).doubleArrayRealVector.walkInDefaultOrder(RealVectorChangingVisitor visitor, int start, int end) Visits (and possibly alters) some entries of this vector in default order (increasing index).doubleArrayRealVector.walkInDefaultOrder(RealVectorPreservingVisitor visitor, int start, int end) Visits (but does not alter) some entries of this vector in default order (increasing index).doubleRealVector.walkInDefaultOrder(RealVectorChangingVisitor visitor, int start, int end) Visits (and possibly alters) some entries of this vector in default order (increasing index).doubleRealVector.walkInDefaultOrder(RealVectorPreservingVisitor visitor, int start, int end) Visits (but does not alter) some entries of this vector in default order (increasing index).SparseFieldVector.walkInDefaultOrder(FieldVectorChangingVisitor<T> visitor, int start, int end) Visits (and possibly alters) some entries of this vector in default order (increasing index).SparseFieldVector.walkInDefaultOrder(FieldVectorPreservingVisitor<T> visitor, int start, int end) Visits (but does not alter) some entries of this vector in default order (increasing index).AbstractFieldMatrix.walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries using the fastest possible order.AbstractFieldMatrix.walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries using the fastest possible order.doubleAbstractRealMatrix.walkInOptimizedOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries using the fastest possible order.doubleAbstractRealMatrix.walkInOptimizedOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries using the fastest possible order.ArrayFieldVector.walkInOptimizedOrder(FieldVectorChangingVisitor<T> visitor, int start, int end) Visits (and possibly change) some entries of this vector in optimized order.ArrayFieldVector.walkInOptimizedOrder(FieldVectorPreservingVisitor<T> visitor, int start, int end) Visits (but does not alter) some entries of this vector in optimized order.doubleArrayRealVector.walkInOptimizedOrder(RealVectorChangingVisitor visitor, int start, int end) Visits (and possibly change) some entries of this vector in optimized order.doubleArrayRealVector.walkInOptimizedOrder(RealVectorPreservingVisitor visitor, int start, int end) Visits (but does not alter) some entries of this vector in optimized order.BlockFieldMatrix.walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries using the fastest possible order.BlockFieldMatrix.walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries using the fastest possible order.doubleBlockRealMatrix.walkInOptimizedOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries using the fastest possible order.doubleBlockRealMatrix.walkInOptimizedOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries using the fastest possible order.FieldMatrix.walkInOptimizedOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries using the fastest possible order.FieldMatrix.walkInOptimizedOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries using the fastest possible order.doubleRealMatrix.walkInOptimizedOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries using the fastest possible order.doubleRealMatrix.walkInOptimizedOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries using the fastest possible order.doubleRealVector.walkInOptimizedOrder(RealVectorChangingVisitor visitor, int start, int end) Visits (and possibly change) some entries of this vector in optimized order.doubleRealVector.walkInOptimizedOrder(RealVectorPreservingVisitor visitor, int start, int end) Visits (but does not alter) some entries of this vector in optimized order.SparseFieldVector.walkInOptimizedOrder(FieldVectorChangingVisitor<T> visitor, int start, int end) Visits (and possibly change) some entries of this vector in optimized order.SparseFieldVector.walkInOptimizedOrder(FieldVectorPreservingVisitor<T> visitor, int start, int end) Visits (but does not alter) some entries of this vector in optimized order.AbstractFieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.AbstractFieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order.doubleAbstractRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.doubleAbstractRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order.Array2DRowFieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.Array2DRowFieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order.doubleArray2DRowRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.doubleArray2DRowRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order.BlockFieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.BlockFieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order.doubleBlockRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.doubleBlockRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order.FieldMatrix.walkInRowOrder(FieldMatrixChangingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.FieldMatrix.walkInRowOrder(FieldMatrixPreservingVisitor<T> visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order.doubleRealMatrix.walkInRowOrder(RealMatrixChangingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (and possibly change) some matrix entries in row order.doubleRealMatrix.walkInRowOrder(RealMatrixPreservingVisitor visitor, int startRow, int endRow, int startColumn, int endColumn) Visit (but don't change) some matrix entries in row order. -
Uses of OutOfRangeException in org.apache.commons.math3.random
Methods in org.apache.commons.math3.random that throw OutOfRangeExceptionModifier and TypeMethodDescriptiondoubleEmpiricalDistribution.inverseCumulativeProbability(double p) Computes the quantile function of this distribution.intRandomDataGenerator.nextPascal(int r, double p) Generates a random value from thePascal Distribution.intRandomDataImpl.nextPascal(int r, double p) Deprecated.Generates a random value from thePascal Distribution.Constructors in org.apache.commons.math3.random that throw OutOfRangeExceptionModifierConstructorDescriptionHaltonSequenceGenerator(int dimension) Construct a new Halton sequence generator for the given space dimension.HaltonSequenceGenerator(int dimension, int[] bases, int[] weights) Construct a new Halton sequence generator with the given base numbers and weights for each dimension.SobolSequenceGenerator(int dimension) Construct a new Sobol sequence generator for the given space dimension.StableRandomGenerator(RandomGenerator generator, double alpha, double beta) Create a new generator. -
Uses of OutOfRangeException in org.apache.commons.math3.stat.inference
Methods in org.apache.commons.math3.stat.inference that throw OutOfRangeExceptionModifier and TypeMethodDescriptionbooleanOneWayAnova.anovaTest(Collection<double[]> categoryData, double alpha) Performs an ANOVA test, evaluating the null hypothesis that there is no difference among the means of the data categories.booleanChiSquareTest.chiSquareTest(double[] expected, long[] observed, double alpha) Performs a Chi-square goodness of fit test evaluating the null hypothesis that the observed counts conform to the frequency distribution described by the expected counts, with significance levelalpha.booleanChiSquareTest.chiSquareTest(long[][] counts, double alpha) Performs a chi-square test of independence evaluating the null hypothesis that the classifications represented by the counts in the columns of the input 2-way table are independent of the rows, with significance levelalpha.static booleanTestUtils.chiSquareTest(double[] expected, long[] observed, double alpha) static booleanTestUtils.chiSquareTest(long[][] counts, double alpha) booleanChiSquareTest.chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha) Performs a Chi-Square two sample test comparing two binned data sets.static booleanTestUtils.chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha) booleanGTest.gTest(double[] expected, long[] observed, double alpha) Performs a G-Test (Log-Likelihood Ratio Test) for goodness of fit evaluating the null hypothesis that the observed counts conform to the frequency distribution described by the expected counts, with significance levelalpha.static booleanTestUtils.gTest(double[] expected, long[] observed, double alpha) booleanGTest.gTestDataSetsComparison(long[] observed1, long[] observed2, double alpha) Performs a G-Test (Log-Likelihood Ratio Test) comparing two binned data sets.static booleanTestUtils.gTestDataSetsComparison(long[] observed1, long[] observed2, double alpha) static booleanTestUtils.homoscedasticTTest(double[] sample1, double[] sample2, double alpha) booleanTTest.homoscedasticTTest(double[] sample1, double[] sample2, double alpha) Performs a two-sided t-test evaluating the null hypothesis thatsample1andsample2are drawn from populations with the same mean, with significance levelalpha, assuming that the subpopulation variances are equal.static booleanTestUtils.oneWayAnovaTest(Collection<double[]> categoryData, double alpha) static booleanTestUtils.pairedTTest(double[] sample1, double[] sample2, double alpha) booleanTTest.pairedTTest(double[] sample1, double[] sample2, double alpha) Performs a paired t-test evaluating the null hypothesis that the mean of the paired differences betweensample1andsample2is 0 in favor of the two-sided alternative that the mean paired difference is not equal to 0, with significance levelalpha.static booleanTestUtils.tTest(double[] sample1, double[] sample2, double alpha) static booleanTestUtils.tTest(double mu, double[] sample, double alpha) static booleanTestUtils.tTest(double mu, StatisticalSummary sampleStats, double alpha) static booleanTestUtils.tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha) booleanTTest.tTest(double[] sample1, double[] sample2, double alpha) Performs a two-sided t-test evaluating the null hypothesis thatsample1andsample2are drawn from populations with the same mean, with significance levelalpha.booleanTTest.tTest(double mu, double[] sample, double alpha) Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from whichsampleis drawn equalsmu.booleanTTest.tTest(double mu, StatisticalSummary sampleStats, double alpha) Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from which the dataset described bystatsis drawn equalsmu.booleanTTest.tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha) Performs a two-sided t-test evaluating the null hypothesis thatsampleStats1andsampleStats2describe datasets drawn from populations with the same mean, with significance levelalpha. -
Uses of OutOfRangeException in org.apache.commons.math3.stat.interval
Methods in org.apache.commons.math3.stat.interval that throw OutOfRangeExceptionModifier and TypeMethodDescriptionBinomialConfidenceInterval.createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel) Create a confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level. -
Uses of OutOfRangeException in org.apache.commons.math3.stat.regression
Methods in org.apache.commons.math3.stat.regression that throw OutOfRangeExceptionModifier and TypeMethodDescriptiondoubleRegressionResults.getCovarianceOfParameters(int i, int j) Returns the covariance between regression parameters i and j.doubleRegressionResults.getParameterEstimate(int index) Returns the parameter estimate for the regressor at the given index.doubleSimpleRegression.getSlopeConfidenceInterval()Returns the half-width of a 95% confidence interval for the slope estimate.doubleSimpleRegression.getSlopeConfidenceInterval(double alpha) Returns the half-width of a (100-100*alpha)% confidence interval for the slope estimate.doubleRegressionResults.getStdErrorOfEstimate(int index) Returns the standard error of the parameter estimate at index, usually denoted s(bindex). -
Uses of OutOfRangeException in org.apache.commons.math3.util
Methods in org.apache.commons.math3.util that throw OutOfRangeException