Uses of Class
org.hipparchus.util.ResizableDoubleArray.ExpansionMode
-
Packages that use ResizableDoubleArray.ExpansionMode Package Description org.hipparchus.util Convenience routines and common data structures used throughout the Hipparchus library. -
-
Uses of ResizableDoubleArray.ExpansionMode in org.hipparchus.util
Methods in org.hipparchus.util that return ResizableDoubleArray.ExpansionMode Modifier and Type Method Description ResizableDoubleArray.ExpansionMode
ResizableDoubleArray. getExpansionMode()
The expansion mode determines whether the internal storage array grows additively or multiplicatively when it is expanded.static ResizableDoubleArray.ExpansionMode
ResizableDoubleArray.ExpansionMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static ResizableDoubleArray.ExpansionMode[]
ResizableDoubleArray.ExpansionMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.hipparchus.util with parameters of type ResizableDoubleArray.ExpansionMode Constructor Description ResizableDoubleArray(int initialCapacity, double expansionFactor, double contractionCriterion, ResizableDoubleArray.ExpansionMode expansionMode, double... data)
Creates an instance with the specified properties.
-