prev

语法

prev(X)

参数

X 是一个向量。

详情

将向量向右移动一个位置。next 函数将向量向左移动一个位置。类似功能还有函数:move

例子

x=3 9 5 1 4;
prev(x);

输出返回:[,3,9,5,1]