Skip to content
Snippets Groups Projects
Commit cc14ed2c authored by jacques.grelet_ird.fr's avatar jacques.grelet_ird.fr
Browse files

work with all csv files

parent c5d639c1
No related branches found
No related tags found
No related merge requests found
function result = get_fieldnames( self )
% tsg_ncvar/get_fieldnames -- get internal fieldnames of "tsg_ncvar" object.
% tsg_nc/get_fieldnames -- get internal structure fieldnames of "tsg_nc" object.
%
% Input
% -----
% self ........... an instance of 'tsg_ncvar' object
% self ........... an instance of 'tsg_nc' object
%
% Output
% ------
......@@ -12,7 +12,14 @@ function result = get_fieldnames( self )
% $Id$
theStruc = get(self,'DAYD');
result = fieldnames(theStruc);
% get cell of keys inside object
% ------------------------------
c = get(self);
if isempty(c)
warning('Empty object') ;
else
% get structure for the first element
theStruc = get(self,c{1});
result = fieldnames(theStruc);
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment