Changeset 17765
- Timestamp:
- 04/18/14 08:25:02 (11 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/matdamageice.m
r17757 r17765 1 %MAT ICE class definition1 %MATDAMAGEICE class definition 2 2 % 3 3 % Usage: 4 % mat ice=matice();4 % matdamageice=matdamageice(); 5 5 6 classdef mat ice6 classdef matdamageice 7 7 properties (SetAccess=public) 8 8 rho_ice = 0.; … … 64 64 65 65 end % }}} 66 function obj = mat ice(varargin) % {{{66 function obj = matdamageice(varargin) % {{{ 67 67 switch nargin 68 68 case 0 … … 70 70 case 1 71 71 inputstruct=varargin{1}; 72 list1 = properties('mat ice');72 list1 = properties('matdamageice'); 73 73 list2 = fieldnames(inputstruct); 74 74 for i=1:length(list1)
Note:
See TracChangeset
for help on using the changeset viewer.