Package loci.poi.util
Class DoubleList2d
- java.lang.Object
-
- loci.poi.util.DoubleList2d
-
public class DoubleList2d extends Object
Provides an interface for interacting with 2d arrays of doubles. This implementation will return 0 for items not yet allocated and automatically increase the array size for set operations. You never get an index out of bounds.- Version:
- $Id: DoubleList2d.java 496526 2007-01-15 22:46:35Z markt $
- Author:
- Glen Stampoultzis (glens at apache.org)
-
-
Constructor Summary
Constructors Constructor Description DoubleList2d()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
get(int col, int row)
void
set(int col, int row, double value)
-