mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-06 15:34:44 +08:00
16 lines
353 B
Plaintext
16 lines
353 B
Plaintext
netcdf test {
|
|
types:
|
|
compound exp_t {
|
|
int j ;
|
|
int i ;
|
|
short g(3, 3, 3) ;
|
|
short f(2, 2) ;
|
|
}; // exp_t
|
|
variables:
|
|
exp_t exp ;
|
|
data:
|
|
|
|
exp =
|
|
{1, 2, {0, 256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4096, 4352, 4608, 4864, 5120, 5376, 5632, 5888, 6144, 6400, 6656}, {0, 256, 512, 768}} ;
|
|
}
|