Changeset 21745
- Timestamp:
- 05/26/17 19:46:51 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/massconaxpby.m
r21049 r21745 3 3 % Usage: 4 4 % massconaxpby=massconaxpby(); 5 % masscon sumaxpby=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); 6 6 % 7 7 % 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 … … 77 77 function md = marshall(self,prefix,md,fid) % {{{ 78 78 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'); 86 85 end % }}} 87 86 end
Note:
See TracChangeset
for help on using the changeset viewer.