Package org.esa.snap.core.util.math
Class Array.Double
- java.lang.Object
-
- org.esa.snap.core.util.math.Array.Double
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.esa.snap.core.util.math.Array
Array.Double, Array.Float
-
-
Constructor Summary
Constructors Constructor Description Double(double... values)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
copyTo(int srcPos, double[] dest, int destPos, int length)
Copies an array from the primitive array wrapped, beginning at the specified position, to the specified position of the destination array.int
getLength()
Returns the length of the primitive array wrapped.double
getValue(int i)
Returns the ith value of the array wrapped.
-
-
-
Method Detail
-
getLength
public final int getLength()
Description copied from interface:Array
Returns the length of the primitive array wrapped.
-
getValue
public final double getValue(int i)
Description copied from interface:Array
Returns the ith value of the array wrapped.
-
copyTo
public final void copyTo(int srcPos, double[] dest, int destPos, int length)
Description copied from interface:Array
Copies an array from the primitive array wrapped, beginning at the specified position, to the specified position of the destination array.
-
-