tail

语法

tail(obj, [n=1])

参数

  • obj 可以是向量、矩阵或表。

  • n 是一个正整数。

详情

tail 返回向量的最后 n 个元素,或者矩阵的最后 n 列,或者表的最后 n 行。如果 n 没有指定,n 取默认值 1。

例子

x=1..10;
tail(x);
# output
10

tail(x,2);
# output
[9,10]

x=1..10$2:5;
x;
#0 #1 #2 #3 #4
1 3 5 7 9
2 4 6 8 10
x.tail();
# output
[9,10]

tail(x,2);
#0 #1
7 9
8 10
x=table(1..5 as a, 6..10 as b);
x;
a b
1 6
2 7
3 8
4 9
5 10
tail(x);
# output
b->10
a->5


x.tail(2);
a b
4 9
5 10

相关函数:head