Changeset 8668
- Timestamp:
- 06/20/11 09:04:59 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/Interp/PatchToVec.m
r8659 r8668 6 6 7 7 %if the patch is P0, we need to transform the vector a little bit first 8 if size(Patch.value,2)==1, 9 vec=Patch.value(Patch.element); 10 else 11 connectivity=sparse(Patch.index(:),1,1); 12 value =sparse(Patch.index(:),1,Patch.value(:)); 13 vec=full(value./connectivity); 14 end 8 switch(Patch.interpolation(1)), 9 case P0Enum, 10 vec(Patch.element)=Patch.value; 11 case P1Enum, 12 connectivity=sparse(Patch.index(:),1,1); 13 value =sparse(Patch.index(:),1,Patch.value(:)); 14 vec=full(value./connectivity); 15 otherwise, 16 error('interpolation not supported yet'); 17 end
Note:
See TracChangeset
for help on using the changeset viewer.