view main/octcdf/PKG_DEL @ 12669:1c92b4b26ced octave-forge

releasePKG.m: exclude .hg* files of export as of bug #45669
author jpicarbajal
date Fri, 31 Jul 2015 19:49:28 +0000
parents 12ffde842c1f
children
line wrap: on
line source


OCTCDF_funnames = {"ncclose","ncredef","ncenddef","ncsync","ncvar","ncatt",...
         "ncdim","ncname","ncdatatype","ncautonan","ncautoscale","ncisrecord"};

for OCTCDF_i = 1:length(OCTCDF_funnames)
    try
        autoload (OCTCDF_funnames{OCTCDF_i}, ...
           fullfile (fileparts (mfilename ("fullpath")), "netcdf.oct"),'remove');
    catch
    end 
end

clear OCTCDF_funnames OCTCDF_i