mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
15 lines
201 B
Plaintext
15 lines
201 B
Plaintext
netcdf test_vlen6 {
|
|
types:
|
|
compound v1_base_t {
|
|
int v1 ;
|
|
}; // v1_base_t
|
|
v1_base_t(*) v1_t ;
|
|
dimensions:
|
|
d = 2 ;
|
|
variables:
|
|
v1_t v1(d) ;
|
|
data:
|
|
|
|
v1 = {{1}, {3}, {5}, {7}}, {{17}, {19}} ;
|
|
}
|