rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
veccomp1.m
1 function res = veccomp1(v)
2 %function res = veccomp1(v)
3 %
4 % stupid function giving the first component of object v.
5 % for simplifaciton of reading of integral-kernel-functions.
6 
7 % Bernard Haasdonk 12.1.2011
8 
9 res = v(1);