Changeset 21605


Ignore:
Timestamp:
03/11/17 16:06:46 (8 years ago)
Author:
Eric.Larour
Message:

CHG: some matlab classes

Location:
issm/branches/trunk-larour-GRL2017/src/m
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-larour-GRL2017/src/m/classes/massconaxpby.m

    r21049 r21605  
    33%   Usage:
    44%      massconaxpby=massconaxpby();
    5 %      massconsumaxpby=massconaxpby('name','MassCon58+35','namex','MassCon58','alpha',.5,'namey','MassCon35','beta',.5);
     5%      massconaxpby=massconaxpby('name','MassCon58+35','namex','MassCon58','alpha',.5,'namey','MassCon35','beta',.5);
    66%
    77%   where name is the name of the massconaxpby object, namex is the name of the first masscon, namey the name of the second masscon and alpha,beta the
     
    7777                function md = marshall(self,prefix,md,fid) % {{{
    7878
    79                 WriteData(fid,prefix,'object',self,'fieldname','name','format','String');
    80                 WriteData(fid,prefix,'object',self,'fieldname','definitionstring','format','Integer');
    81                 WriteData(fid,prefix,'object',self,'fieldname','namex','format','String');
    82                 WriteData(fid,prefix,'object',self,'fieldname','namey','format','String');
    83                 WriteData(fid,prefix,'object',self,'fieldname','alpha','format','Double');
    84                 WriteData(fid,prefix,'object',self,'fieldname','beta','format','Double');
    85 
     79                WriteData(fid,prefix,'data',self.name,'name','md.massconaxpby.name','format','String');
     80                WriteData(fid,prefix,'data',self.definitionstring,'name','md.massconaxpby.definitionstring','format','String');
     81                WriteData(fid,prefix,'data',self.namex,'name','md.massconaxpby.namex','format','String');
     82                WriteData(fid,prefix,'data',self.namey,'name','md.massconaxpby.namey','format','String');
     83                WriteData(fid,prefix,'data',self.alpha,'name','md.massconaxpby.alpha','format','Double');
     84                WriteData(fid,prefix,'data',self.beta,'name','md.massconaxpby.beta','format','Double');
    8685                end % }}}
    8786        end
  • issm/branches/trunk-larour-GRL2017/src/m/classes/misfit.m

    r21049 r21605  
    7171                        md = checkfield(md,'fieldname','self.observation','field',self.observation,'timeseries',1,'NaN',1,'Inf',1);
    7272                        md = checkfield(md,'fieldname','self.timeinterpolation','field',self.timeinterpolation,'values',{'nearestneighbor'});
    73                         md = checkfield(md,'fieldname','self.weights','field',self.weights,'timeseries',1,'NaN',1,'Inf',1);
     73                        md = checkfield(md,'fieldname','self.weights','field',self.weights,'timeseries',1,'NaN',1,'Inf',1);
     74
     75                        if ~ischar(self.definitionstring) | ~ischar(self.model_string) | ~ischar(self.observation_string) | ~ischar(self.weights_string),
     76                                error('one of definitionstring, model_string, observation_string or weights_string is empty!');
     77                        end
    7478
    7579                end % }}}
Note: See TracChangeset for help on using the changeset viewer.