Java org.apache.commons.math.util ResizableDoubleArray fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math.util ResizableDoubleArray fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math.util ResizableDoubleArray.

The text is from its open source code.

Constructor

ResizableDoubleArray()
Create a ResizableArray with default properties.
ResizableDoubleArray(int initialCapacity)
Create a ResizableArray with the specified initial capacity.
ResizableDoubleArray(double[] initialArray)
Create a ResizableArray from an existing double[] with the initial capacity and numElements corresponding to the size of the supplied double[] array.
ResizableDoubleArray(ResizableDoubleArray original)
Copy constructor.

Method

voidaddElement(double value)
Adds an element to the end of this expandable array.
double[]getElements()
Returns a double array containing the elements of this ResizableArray.