#Adding vectors together > x=c(2,5,7,9) > y=c(3,6,8,10) > x+y [1] 5 11 15 19 ... R will recycle (i.e., repeat) the shorter vector until its length matches ...
確定! 回上一頁