


EXPLINK - allow to link several segments of domain outline together
Takes a domain outline made of various segments, and links them together in one
domain outline. Use expview to see end result.
Usage:
explink(domainoutline,minthreshold,step)
See also EXPMASTER, EXPDOC

0001 function explink(domainoutline,minthreshold,step) 0002 %EXPLINK - allow to link several segments of domain outline together 0003 % 0004 % Takes a domain outline made of various segments, and links them together in one 0005 % domain outline. Use expview to see end result. 0006 % 0007 % Usage: 0008 % explink(domainoutline,minthreshold,step) 0009 % 0010 % See also EXPMASTER, EXPDOC 0011 0012 notdone=1; 0013 0014 while notdone, 0015 0016 for i=1:1000, 0017 status=expconcatenate(domainoutline,minthreshold+(i-1)*step); 0018 if status==0, 0019 return; 0020 end 0021 if status==1, 0022 break; 0023 end 0024 if status==-1, 0025 continue; 0026 end 0027 end 0028 end 0029