Uses of Class
org.hipparchus.util.MathArrays.OrderDirection
-
Packages that use MathArrays.OrderDirection Package Description org.hipparchus.migration.exception This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.util Convenience routines and common data structures used throughout the Hipparchus library. -
-
Uses of MathArrays.OrderDirection in org.hipparchus.migration.exception
Methods in org.hipparchus.migration.exception that return MathArrays.OrderDirection Modifier and Type Method Description MathArrays.OrderDirectionNonMonotonicSequenceException. getDirection()Deprecated.Constructors in org.hipparchus.migration.exception with parameters of type MathArrays.OrderDirection Constructor Description NonMonotonicSequenceException(Number wrong, Number previous, int index, MathArrays.OrderDirection direction, boolean strict)Deprecated.Construct the exception. -
Uses of MathArrays.OrderDirection in org.hipparchus.util
Methods in org.hipparchus.util that return MathArrays.OrderDirection Modifier and Type Method Description static MathArrays.OrderDirectionMathArrays.OrderDirection. valueOf(String name)Returns the enum constant of this type with the specified name.static MathArrays.OrderDirection[]MathArrays.OrderDirection. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hipparchus.util with parameters of type MathArrays.OrderDirection Modifier and Type Method Description static voidMathArrays. checkOrder(double[] val, MathArrays.OrderDirection dir, boolean strict)Check that the given array is sorted.static booleanMathArrays. checkOrder(double[] val, MathArrays.OrderDirection dir, boolean strict, boolean abort)Check that the given array is sorted.static booleanMathArrays. isMonotonic(double[] val, MathArrays.OrderDirection dir, boolean strict)Check that an array is monotonically increasing or decreasing.static <T extends Comparable<? super T>>
booleanMathArrays. isMonotonic(T[] val, MathArrays.OrderDirection dir, boolean strict)Check that an array is monotonically increasing or decreasing.static voidMathArrays. sortInPlace(double[] x, MathArrays.OrderDirection dir, double[]... yList)Sort an array in place and perform the same reordering of entries on other arrays.
-