Home > General-Functions > SUGR > Point_2D > sugr_select_Point_2D.m

sugr_select_Point_2D

PURPOSE ^

% Select n-th point form list of points

SYNOPSIS ^

function x = sugr_select_Point_2D(xs,n)

DESCRIPTION ^

% 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

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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;

Generated on Sat 21-Jul-2018 20:56:10 by m2html © 2005