mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
16 lines
205 B
Plaintext
16 lines
205 B
Plaintext
|
netcdf test_vlen6.nc {
|
||
|
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}} ;
|
||
|
}
|