mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
16 lines
176 B
Plaintext
16 lines
176 B
Plaintext
|
netcdf ref_tst_comp3 {
|
||
|
types:
|
||
|
compound c_t {
|
||
|
float x ;
|
||
|
double y ;
|
||
|
}; // c_t
|
||
|
compound d_t {
|
||
|
c_t s1 ;
|
||
|
}; // d_t
|
||
|
variables:
|
||
|
d_t x ;
|
||
|
data:
|
||
|
|
||
|
x = {{1, -2}} ;
|
||
|
}
|