Ncarray Toolkit - Functions
The following functions are available:
ncArray
| ncArray | Create a ncArray that can be accessed as a normal array. |
| ncCatArray | Create an array that represent a concatenated NetCDF variables. |
| nccoord | Get coordinates of the variable varname in the netcdf file called filename. |
| nctimeunits | Parse netCDF time unit. |
| ncreadtime | Read a time variable as serial day number. |
| cached_decompress | Decompress a file using a cache. |
| @ncArray/coord | Get a array of structures with the coordinate of ncArray A. |
| @ncArray/subsasgn | Perform the subscripted assignment operation according to the subscript speci... |
| @ncArray/subsref | Perform the subscripted element selection operation according to the subscrip... |
ncBaseArray
| @BaseArray/BaseArray | Create a BaseArray of size SZ. |
| @BaseArray/end | Return last index along a dimension. |
| @BaseArray/full | Make full (dense) array. |
| @BaseArray/isnumeric | Test if array is numeric. |
| @BaseArray/max | Compute the maximum along dimension DIM. |
| @BaseArray/mean | Compute the mean along dimension DIM. |
| @BaseArray/min | Compute the minimum along dimension DIM. |
| @BaseArray/moment | Compute the central moment of the given order along dimension DIM. |
| @BaseArray/numel | Number of elements. |
| @BaseArray/prod | Compute the product of all elements along dimension DIM. |
| @BaseArray/reduce | Reduce array using callback fundtions. |
| @BaseArray/size | Size of array |
| @BaseArray/std | Compute the standard deviation. |
| @BaseArray/sum | Compute sum along a dimension. |
| @BaseArray/sumsq | Compute the sum squared. |
| @BaseArray/var | Compute the variance along dimension DIM. |
Test script
| test_ncarray | Test ncBaseArray, ncCatArray and ncArray. |