Changeset 26953


Ignore:
Timestamp:
04/12/22 10:02:52 (3 years ago)
Author:
Mathieu Morlighem
Message:

CHG: save exp file if needed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/roundmesh.m

    r22319 r26953  
    1 function md=roundmesh(md,radius,resolution)
     1function md=roundmesh(md,radius,resolution,varargin)
    22%ROUNDMESH - create an unstructured round mesh
    33%
     
    88%   Usage:
    99%      md=roundmesh(md,radius,resolution)
     10%      md=roundmesh(md,radius,resolution,'domain.exp')
    1011
    1112%First we have to create the domain outline
    12 expname = [tempname() '.exp'];
     13if nargin<4
     14        expname = [tempname() '.exp'];
     15else
     16        expname = varargin{1};
     17end
    1318
    1419%Get number of points on the circle
     
    3237
    3338%delete domain
    34 delete(expname);
     39if nargin<4
     40        delete(expname);
     41end
    3542end
    3643
Note: See TracChangeset for help on using the changeset viewer.