<< flip | Elementary functions | fliplr >> |
B = flipdim(A, dim) |
an array
an positive integer value
flipped array.
flipdim return an new array of A flipped about the dimension dim.
flipdim is similar to flip and available for compatibility with old existing scripts.
x = eye(3, 2);
y = flipdim(x, 1)
y = flipdim(x, 2)
y = flipdim(x, 3)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET