% Select n-th point form list of points x = sugr_select_Point_2D(xs,n) Wolfgang Förstner 2/2011 wfoerstn@uni-bonn.de last change: 9/16 sw See also sugr_Point_2D
0001 %% Select n-th point form list of points 0002 % 0003 % x = sugr_select_Point_2D(xs,n) 0004 % 0005 % Wolfgang Förstner 2/2011 0006 % wfoerstn@uni-bonn.de 0007 % last change: 9/16 sw 0008 % 0009 % See also sugr_Point_2D 0010 0011 0012 function x = sugr_select_Point_2D(xs,n) 0013 0014 x.h = xs.h(n,:)'; 0015 x.Crr = squeeze(xs.Crr(n,:,:)); 0016 x.type = 1;