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 649  
 
 
 
NC_ReadAttr


 NC_ReadAttr  
 
  
interpreted function, defined at i/netcdf.i   line 601  
 
 
 
NC_ReadDim


 NC_ReadDim  
 
  
interpreted function, defined at i/netcdf.i   line 592  
 
 
 
NC_ReadInts


 NC_ReadInts  
 
  
interpreted function, defined at i/netcdf.i   line 620  
 
 
 
NC_ReadMulti


 NC_ReadMulti  
 
  
interpreted function, defined at i/netcdf.i   line 697  
 
 
 
NC_ReadPrim


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


 NC_ReadString  
 
  
interpreted function, defined at i/netcdf.i   line 608  
 
 
 
NC_ReadVar


 NC_ReadVar  
 
  
interpreted function, defined at i/netcdf.i   line 632  
 
 
 
NC_WriteArray


 NC_WriteArray  
 
  
interpreted function, defined at i/netcdf.i   line 752  
 
 
 
NC_WriteAttr


 NC_WriteAttr  
 
  
interpreted function, defined at i/netcdf.i   line 714  
 
 
 
NC_WriteDim


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


 NC_WriteInts  
 
  
interpreted function, defined at i/netcdf.i   line 729  
 
 
 
NC_WriteMulti


 NC_WriteMulti  
 
  
interpreted function, defined at i/netcdf.i   line 809  
 
 
 
NC_WritePrim


 NC_WritePrim  
 
  
interpreted function, defined at i/netcdf.i   line 803  
 
 
 
NC_WriteString


 NC_WriteString  
 
  
interpreted function, defined at i/netcdf.i   line 720  
 
 
 
NC_WriteVar


 NC_WriteVar  
 
  
interpreted function, defined at i/netcdf.i   line 739  
 
 
 
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 569  
 
 
 
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 563  
 
 
 
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 584  
 
 
 
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 575