| 8 |
|
* 6/4/86 |
| 9 |
|
*/ |
| 10 |
|
|
| 11 |
< |
#define MAXDIM 8 /* maximum dimensions for data array */ |
| 11 |
> |
#define MAXDDIM 8 /* maximum dimensions for data array */ |
| 12 |
|
|
| 13 |
|
#define DATATYPE float /* single precision to save space */ |
| 14 |
|
|
| 21 |
|
double org, siz; /* coordinate domain */ |
| 22 |
|
int ne; /* number of elements */ |
| 23 |
|
double *p; /* point locations */ |
| 24 |
< |
} dim[MAXDIM]; /* dimension specifications */ |
| 24 |
> |
} dim[MAXDDIM]; /* dimension specifications */ |
| 25 |
|
DATATYPE *arr; /* the data */ |
| 26 |
|
struct datarray *next; /* next array in list */ |
| 27 |
|
} DATARRAY; /* a data array */ |