<< fix | Elementary functions | flipdim >> |
B = flip(A, dim) |
an array
an positive integer value
flipped array.
flip return an new array of A flipped about the dimension dim.
x = eye(3, 2);
y = flip(x, 1)
y = flip(x, 2)
y = flip(x, 3)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET