source: MML/trunk/machine/SOLEIL/common/toolbox/ezyfit/ezyfit/delseldata.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 698 bytes
Line 
1function delseldata
2%DELSELDATA  Delete points inside a polygon
3%   DELSELDATA selects part of the current curve by drawing a lasso, and
4%   deletes all the points that are inside the polygon (this operation is
5%   irreversible).
6%
7%   DELSELDATA is a shortcut for SELECTDATA('delete').
8%
9%   See also SELECTDATA, PICKDATA, SELECTFIT.
10
11%   F. Moisy, moisy_at_fast.u-psud.fr
12%   Revision: 1.10,  Date: 2007/09/19
13%   This function is part of the EzyFit Toolbox
14
15% History:
16% 2005/11/02: v1.00, fitst version
17% 2007/09/19: v1.10, now based on D'Errico's selecdata
18
19h=gco;
20listhandle=get(gca, 'Children');
21ignorehandle=listhandle(listhandle~=h);
22selectdata('action','delete','ignore',ignorehandle);
23
Note: See TracBrowser for help on using the repository browser.