MINC Programmer's Reference Manual | ||
---|---|---|
<<< Previous | NetCDF routines | Next >>> |
ncdimdef : Define a dimension with a name and a length. The return value is a dimension id to be used in subsequent calls.
int ncdimdef(int cdfid,char* name,long length); |
ncdimid : Get a dimension id from a name.
int ncdimid(int cdfid,char* name); |
ncdiminq : Inquire about a dimension (name or length).
int ncdiminq(int cdfid,int dimid,char* name,long* length); |
ncdimrename : Rename a dimension.
int ncdimrename(int cdfid,int dimid,char* name); |
<<< Previous | Home | Next >>> |
NetCDF file operations | Up | Variable operations |