netcdf.open
Open NetCDF data source
Syntax
Description
[
opens an existing NetCDF data source, with a specified actualChunksize
,ncid
] = netcdf.open(source
,mode
,chunksize
)chunksize
. The
chunksize
parameter enables I/O performance tuning.
Examples
Input Arguments
Output Arguments
Limitations
The performance of byte-range reading is slower than reading from other sources.
Algorithms
This function corresponds to the nc_open
and
nc__open
functions in the NetCDF library C API. To use this function, you
should be familiar with the NetCDF programming paradigm.