Changeset 2687
- Timestamp:
- 11/30/09 14:58:14 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/project2d.m
r1757 r2687 16 16 %some checks on list of arguments 17 17 if ((nargin~=3) ), 18 project2dusage();18 help project2d 19 19 error('project2d error message'); 20 20 end … … 37 37 projection_value=value((layer-1)*md.numberofelements2d+1:layer*md.numberofelements2d,:); 38 38 end 39 40 function project2dusage();41 disp(' project2d: project ''value'' vector taken at layer ''layer'' from extruded 2d-3d mesh onto 2d mesh ');42 disp(' used to do the extrusion. This routine is used to compare values between a 2d-3d mesh');43 disp(' at a certain layer, and the equivalent value (if it exists), on the original 2d mesh. ');44 disp(' This routine relies heavily on projections (contained in 3d model md) recored during ');45 disp(' the extrude operation.');46 disp(' INPUT function projection_value=project2d(md,value,layer)');
Note:
See TracChangeset
for help on using the changeset viewer.