Changeset 26953
- Timestamp:
- 04/12/22 10:02:52 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/mesh/roundmesh.m
r22319 r26953 1 function md=roundmesh(md,radius,resolution )1 function md=roundmesh(md,radius,resolution,varargin) 2 2 %ROUNDMESH - create an unstructured round mesh 3 3 % … … 8 8 % Usage: 9 9 % md=roundmesh(md,radius,resolution) 10 % md=roundmesh(md,radius,resolution,'domain.exp') 10 11 11 12 %First we have to create the domain outline 12 expname = [tempname() '.exp']; 13 if nargin<4 14 expname = [tempname() '.exp']; 15 else 16 expname = varargin{1}; 17 end 13 18 14 19 %Get number of points on the circle … … 32 37 33 38 %delete domain 34 delete(expname); 39 if nargin<4 40 delete(expname); 41 end 35 42 end 36 43
Note:
See TracChangeset
for help on using the changeset viewer.