Uses of Class
org.apache.commons.math4.exception.NotStrictlyPositiveException
-
Packages that use NotStrictlyPositiveException Package Description org.apache.commons.math4.analysis Parent package for common numerical analysis procedures, including root finding, function interpolation and integration.org.apache.commons.math4.analysis.function Thefunctionpackage contains function objects that wrap the methods contained inMath, as well as common mathematical functions such as the gaussian and sinc functions.org.apache.commons.math4.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions.org.apache.commons.math4.analysis.integration.gauss Gauss family of quadrature schemes.org.apache.commons.math4.analysis.solvers Root finding algorithms, for univariate real functions.org.apache.commons.math4.distribution Implementations of common discrete and continuous distributions.org.apache.commons.math4.distribution.fitting Fitting of parameters against distributions.org.apache.commons.math4.linear Linear algebra support.org.apache.commons.math4.random Random Data Generationorg.apache.commons.math4.stat.correlation Correlations/Covariance computations.org.apache.commons.math4.stat.inference Classes providing hypothesis testing.org.apache.commons.math4.stat.interval Classes providing binomial proportion confidence interval construction.org.apache.commons.math4.util Convenience routines and common data structures used throughout the commons-math library. -
-
Uses of NotStrictlyPositiveException in org.apache.commons.math4.analysis
Methods in org.apache.commons.math4.analysis that throw NotStrictlyPositiveException Modifier and Type Method Description static double[]FunctionUtils. sample(UnivariateFunction f, double min, double max, int n)Samples the specified univariate real function on the specified interval. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.analysis.function
Methods in org.apache.commons.math4.analysis.function that throw NotStrictlyPositiveException Modifier and Type Method Description double[]Gaussian.Parametric. gradient(double x, double... param)Computes the value of the gradient atx.double[]Logistic.Parametric. gradient(double x, double... param)Computes the value of the gradient atx.doubleGaussian.Parametric. value(double x, double... param)Computes the value of the Gaussian atx.doubleLogistic.Parametric. value(double x, double... param)Computes the value of the sigmoid atx.Constructors in org.apache.commons.math4.analysis.function that throw NotStrictlyPositiveException Constructor Description Gaussian(double mean, double sigma)Normalized gaussian with given mean and standard deviation.Gaussian(double norm, double mean, double sigma)Gaussian with given normalization factor, mean and standard deviation.Logistic(double k, double m, double b, double q, double a, double n) -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.analysis.integration
Constructors in org.apache.commons.math4.analysis.integration that throw NotStrictlyPositiveException Constructor Description BaseAbstractUnivariateIntegrator(double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)Construct an integrator with given accuracies and iteration counts.BaseAbstractUnivariateIntegrator(int minimalIterationCount, int maximalIterationCount)Construct an integrator with given iteration counts.IterativeLegendreGaussIntegrator(int n, double relativeAccuracy, double absoluteAccuracy)Builds an integrator with given accuracies.IterativeLegendreGaussIntegrator(int n, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)Builds an integrator with given accuracies and iterations counts.IterativeLegendreGaussIntegrator(int n, int minimalIterationCount, int maximalIterationCount)Builds an integrator with given iteration counts.MidPointIntegrator(double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)Build a midpoint integrator with given accuracies and iterations counts.MidPointIntegrator(int minimalIterationCount, int maximalIterationCount)Build a midpoint integrator with given iteration counts.RombergIntegrator(double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)Build a Romberg integrator with given accuracies and iterations counts.RombergIntegrator(int minimalIterationCount, int maximalIterationCount)Build a Romberg integrator with given iteration counts.SimpsonIntegrator(double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)Build a Simpson integrator with given accuracies and iterations counts.SimpsonIntegrator(int minimalIterationCount, int maximalIterationCount)Build a Simpson integrator with given iteration counts.TrapezoidIntegrator(double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)Build a trapezoid integrator with given accuracies and iterations counts.TrapezoidIntegrator(int minimalIterationCount, int maximalIterationCount)Build a trapezoid integrator with given iteration counts. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.analysis.integration.gauss
Methods in org.apache.commons.math4.analysis.integration.gauss that throw NotStrictlyPositiveException Modifier and Type Method Description Pair<double[],double[]>BaseRuleFactory. getRule(int numberOfPoints)Gets a copy of the quadrature rule with the given number of integration points.GaussIntegratorGaussIntegratorFactory. legendre(int numberOfPoints, double lowerBound, double upperBound)Creates a Gauss-Legendre integrator of the given order.GaussIntegratorGaussIntegratorFactory. legendreHighPrecision(int numberOfPoints)Creates a Gauss-Legendre integrator of the given order.GaussIntegratorGaussIntegratorFactory. legendreHighPrecision(int numberOfPoints, double lowerBound, double upperBound)Creates an integrator of the given order, and whose call to theintegratemethod will perform an integration on the given interval. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.analysis.solvers
Methods in org.apache.commons.math4.analysis.solvers that throw NotStrictlyPositiveException Modifier and Type Method Description static double[]UnivariateSolverUtils. bracket(UnivariateFunction function, double initial, double lowerBound, double upperBound)This method simply callsbracket(function, initial, lowerBound, upperBound, q, r, maximumIterations)withqandrset to 1.0 andmaximumIterationsset toInteger.MAX_VALUE.static double[]UnivariateSolverUtils. bracket(UnivariateFunction function, double initial, double lowerBound, double upperBound, int maximumIterations)This method simply callsbracket(function, initial, lowerBound, upperBound, q, r, maximumIterations)withqandrset to 1.0. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.distribution
Methods in org.apache.commons.math4.distribution that throw NotStrictlyPositiveException Modifier and Type Method Description java.lang.Object[]EnumeratedDistribution.Sampler. sample(int sampleSize)Generates a random sample from the distribution.T[]EnumeratedDistribution.Sampler. sample(int sampleSize, T[] array)Generates a random sample from the distribution. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.distribution.fitting
Methods in org.apache.commons.math4.distribution.fitting that throw NotStrictlyPositiveException Modifier and Type Method Description static MixtureMultivariateNormalDistributionMultivariateNormalMixtureExpectationMaximization. estimate(double[][] data, int numComponents)Helper method to create a multivariate normal mixture model which can be used to initializeMultivariateNormalMixtureExpectationMaximization.fit(MixtureMultivariateNormalDistribution).voidMultivariateNormalMixtureExpectationMaximization. fit(MixtureMultivariateNormalDistribution initialMixture)Fit a mixture model to the data supplied to the constructor.voidMultivariateNormalMixtureExpectationMaximization. fit(MixtureMultivariateNormalDistribution initialMixture, int maxIterations, double threshold)Fit a mixture model to the data supplied to the constructor.Constructors in org.apache.commons.math4.distribution.fitting that throw NotStrictlyPositiveException Constructor Description MultivariateNormalMixtureExpectationMaximization(double[][] data)Creates an object to fit a multivariate normal mixture model to data. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.linear
Methods in org.apache.commons.math4.linear that throw NotStrictlyPositiveException Modifier and Type Method Description abstract FieldMatrix<T>AbstractFieldMatrix. createMatrix(int rowDimension, int columnDimension)Create a newFieldMatrix<T>of the same type as the instance with the supplied row and column dimensions.abstract RealMatrixAbstractRealMatrix. createMatrix(int rowDimension, int columnDimension)Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.FieldMatrix<T>Array2DRowFieldMatrix. createMatrix(int rowDimension, int columnDimension)Create a newFieldMatrix<T>of the same type as the instance with the supplied row and column dimensions.RealMatrixArray2DRowRealMatrix. createMatrix(int rowDimension, int columnDimension)Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.FieldMatrix<T>BlockFieldMatrix. createMatrix(int rowDimension, int columnDimension)Create a newFieldMatrix<T>of the same type as the instance with the supplied row and column dimensions.BlockRealMatrixBlockRealMatrix. createMatrix(int rowDimension, int columnDimension)Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.RealMatrixDiagonalMatrix. createMatrix(int rowDimension, int columnDimension)Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.FieldMatrix<T>FieldMatrix. createMatrix(int rowDimension, int columnDimension)Create a newFieldMatrix<T>of the same type as the instance with the supplied row and column dimensions.OpenMapRealMatrixOpenMapRealMatrix. createMatrix(int rowDimension, int columnDimension)Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.RealMatrixRealMatrix. createMatrix(int rowDimension, int columnDimension)Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.Constructors in org.apache.commons.math4.linear that throw NotStrictlyPositiveException Constructor Description AbstractFieldMatrix(Field<T> field, int rowDimension, int columnDimension)Create a newFieldMatrix<T>with the supplied row and column dimensions.AbstractRealMatrix(int rowDimension, int columnDimension)Create a new RealMatrix with the supplied row and column dimensions.Array2DRowFieldMatrix(Field<T> field, int rowDimension, int columnDimension)Create a newFieldMatrix<T>with the supplied row and column dimensions.Array2DRowRealMatrix(int rowDimension, int columnDimension)Create a new RealMatrix with the supplied row and column dimensions.BlockFieldMatrix(int rows, int columns, T[][] blockData, boolean copyArray)Create a new dense matrix copying entries from block layout data.BlockFieldMatrix(Field<T> field, int rows, int columns)Create a new matrix with the supplied row and column dimensions.BlockRealMatrix(double[][] rawData)Create a new dense matrix copying entries from raw layout data.BlockRealMatrix(int rows, int columns)Create a new matrix with the supplied row and column dimensions.BlockRealMatrix(int rows, int columns, double[][] blockData, boolean copyArray)Create a new dense matrix copying entries from block layout data.DiagonalMatrix(int dimension)Creates a matrix with the supplied dimension.OpenMapRealMatrix(int rowDimension, int columnDimension)Build a sparse matrix with the supplied row and column dimensions. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.random
Constructors in org.apache.commons.math4.random that throw NotStrictlyPositiveException Constructor Description SobolSequenceGenerator(int dimension, java.io.InputStream is)Construct a new Sobol sequence generator for the given space dimension with direction vectors loaded from the given stream. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.stat.correlation
Methods in org.apache.commons.math4.stat.correlation that throw NotStrictlyPositiveException Modifier and Type Method Description protected RealMatrixCovariance. computeCovarianceMatrix(double[][] data)Create a covariance matrix from a rectangular array whose columns represent covariates.protected RealMatrixCovariance. computeCovarianceMatrix(double[][] data, boolean biasCorrected)Compute a covariance matrix from a rectangular array whose columns represent covariates.Constructors in org.apache.commons.math4.stat.correlation that throw NotStrictlyPositiveException Constructor Description Covariance(double[][] data)Create a Covariance matrix from a rectangular array whose columns represent covariates.Covariance(double[][] data, boolean biasCorrected)Create a Covariance matrix from a rectangular array whose columns represent covariates. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.stat.inference
Methods in org.apache.commons.math4.stat.inference that throw NotStrictlyPositiveException Modifier and Type Method Description doubleChiSquareTest. chiSquare(double[] expected, long[] observed)static doubleInferenceTestUtils. chiSquare(double[] expected, long[] observed)doubleChiSquareTest. chiSquareTest(double[] expected, long[] observed)Returns the observed significance level, or p-value, associated with a Chi-square goodness of fit test comparing theobservedfrequency counts to those in theexpectedarray.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.static doubleInferenceTestUtils. chiSquareTest(double[] expected, long[] observed)static booleanInferenceTestUtils. chiSquareTest(double[] expected, long[] observed, double alpha)doubleGTest. g(double[] expected, long[] observed)static doubleInferenceTestUtils. g(double[] expected, long[] observed)doubleGTest. gTest(double[] expected, long[] observed)Returns the observed significance level, or p-value, associated with a G-Test for goodness of fit comparing theobservedfrequency counts to those in theexpectedarray.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 doubleInferenceTestUtils. gTest(double[] expected, long[] observed)static booleanInferenceTestUtils. gTest(double[] expected, long[] observed, double alpha)doubleGTest. gTestIntrinsic(double[] expected, long[] observed)Returns the intrinsic (Hardy-Weinberg proportions) p-Value, as described in p64-69 of McDonald, J.H.static doubleInferenceTestUtils. gTestIntrinsic(double[] expected, long[] observed)protected doubleTTest. homoscedasticTTest(double m1, double m2, double v1, double v2, double n1, double n2)Computes p-value for 2-sided, 2-sample t-test, under the assumption of equal subpopulation variances.protected doubleTTest. tTest(double m1, double m2, double v1, double v2, double n1, double n2)Computes p-value for 2-sided, 2-sample t-test. -
Uses of NotStrictlyPositiveException in org.apache.commons.math4.stat.interval
Methods in org.apache.commons.math4.stat.interval that throw NotStrictlyPositiveException Modifier and Type Method Description ConfidenceIntervalBinomialConfidenceInterval. 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 NotStrictlyPositiveException in org.apache.commons.math4.util
Methods in org.apache.commons.math4.util that throw NotStrictlyPositiveException Modifier and Type Method Description static voidMathArrays. checkPositive(double[] in)Check that all entries of the input array are strictly positive.Constructors in org.apache.commons.math4.util that throw NotStrictlyPositiveException Constructor Description MultidimensionalCounter(int... size)Create a counter.
-