Google

section N of routines in global.i

yorick banner

Home

Manual

Packages

Global Index

Keywords

Quick Reference

all functions - N

 
 
 
NC_ReadArray


 NC_ReadArray  
 
  

interpreted function, defined at i/netcdf.i   line 641  
 
 
 
NC_ReadAttr


 NC_ReadAttr  
 
  

interpreted function, defined at i/netcdf.i   line 593  
 
 
 
NC_ReadDim


 NC_ReadDim  
 
  

interpreted function, defined at i/netcdf.i   line 584  
 
 
 
NC_ReadInts


 NC_ReadInts  
 
  

interpreted function, defined at i/netcdf.i   line 612  
 
 
 
NC_ReadMulti


 NC_ReadMulti  
 
  

interpreted function, defined at i/netcdf.i   line 689  
 
 
 
NC_ReadPrim


 NC_ReadPrim  
 
  

interpreted function, defined at i/netcdf.i   line 681  
 
 
 
NC_ReadString


 NC_ReadString  
 
  

interpreted function, defined at i/netcdf.i   line 600  
 
 
 
NC_ReadVar


 NC_ReadVar  
 
  

interpreted function, defined at i/netcdf.i   line 624  
 
 
 
NC_WriteArray


 NC_WriteArray  
 
  

interpreted function, defined at i/netcdf.i   line 744  
 
 
 
NC_WriteAttr


 NC_WriteAttr  
 
  

interpreted function, defined at i/netcdf.i   line 706  
 
 
 
NC_WriteDim


 NC_WriteDim  
 
  

interpreted function, defined at i/netcdf.i   line 698  
 
 
 
NC_WriteInts


 NC_WriteInts  
 
  

interpreted function, defined at i/netcdf.i   line 721  
 
 
 
NC_WriteMulti


 NC_WriteMulti  
 
  

interpreted function, defined at i/netcdf.i   line 801  
 
 
 
NC_WritePrim


 NC_WritePrim  
 
  

interpreted function, defined at i/netcdf.i   line 795  
 
 
 
NC_WriteString


 NC_WriteString  
 
  

interpreted function, defined at i/netcdf.i   line 712  
 
 
 
NC_WriteVar


 NC_WriteVar  
 
  

interpreted function, defined at i/netcdf.i   line 731  
 
 
 
NC_attr


 NC_attr  
 
struct NC_attr {  
  string name;    /* represented as NC_string in file */  
  pointer data;   /* represented as NC_array in file */  
}  

structure, defined at i/netcdf.i   line 561  
 
 
 
NC_dim


 NC_dim  
 
struct NC_dim {  
  string name;  /* represented as NC_string in file */  
  long size;  /* length of dimension */  
}  

structure, defined at i/netcdf.i   line 555  
 
 
 
NC_file


 NC_file  
 
struct NC_file {  
  string filename;     /* for later creation */  
  long numrecs;  
  pointer dims, attrs, vars;  
}  

structure, defined at i/netcdf.i   line 576  
 
 
 
NC_var


 NC_var  
 
struct NC_var {  
  string name;         /* represented as NC_string in file */  
  pointer dimlist;     /* represented as NC_iarray in file, dims index */  
  pointer attrs;       /* represented as NC_array in file */  
  int type;   /* netCDF data type number */  
  long len;   /* bytes */  
  long address;  
}  

structure, defined at i/netcdf.i   line 567