/* * TestCollections.java * * Created on 15 February 2002, 13:18 */ package uk.ac.leeds.ccg.andyt.tests; import java.lang.*; import java.util.*; import java.io.*; /** * * @author andyt */ public class TestCollections { /** Creates a new instance of TestCollections */ public TestCollections() { } /** * @param args the command line arguments */ public static void main(String args[]) { // The following sets up an array of values that represent a grid and copies it into a larger array. int dinrows=2; int dincols=2; double nodata=Double.NaN; double[] din=new double[dinrows*dincols]; for (int i=0;i