help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: function still missing after installing and loading the package


From: Nicholas Jankowski
Subject: Re: function still missing after installing and loading the package
Date: Thu, 13 Jul 2017 00:12:23 -0400


Unlike MATLAB, netcdf.create does not work but netcdf_create does work!
See https://octave.sourceforge.io/netcdf/overview.html


Tested on octave-4.2.1 on windows

>> ncid = netcdf.create('foo.nc','NOCLOBBER')

warning: the 'netcdf' function is not yet implemented in Octave


>> ncid = netcdf_create('foo.nc','NOCLOBBER')

ncid =  65536


Hmmm.  That seems odd. The netcdf package description says, "A MATLAB compatible NetCDF interface for Octave"

Seems a bit incompatible if we can't use the same function names/syntax.  Is it a problem colliding with object.method syntax?


reply via email to

[Prev in Thread] Current Thread [Next in Thread]