nc_seterror_optionsΒΆ

nc_seterror_options sets the error options for the netCDF functions.

olderropts = nc_seterror_options()
olderropts = nc_seterror_options(erropts)

Return Value

olderropts is the old error option value.

Parameters

erropts

If erropts is set to NC_VERBOSE, an error message box will be displayed. If erropts is set to 0, no message box will be displayed in case of an error in one of the netCDF functions.

Example

nc_seterror_options(NC_VERBOSE);

History

Version Description
5.6.0 .

id-1253943