fliplr
Returns R, which is the matrix, m, with its columns flipped left to right.
Syntax
R = fliplr(m)
Inputs
- m
- Type: string | mat
Outputs
- R
- Type: string | mat
Example
Complex matrix:
R = fliplr([1 2i])
R = [Matrix] 1 x 2
0 + 2i 1 + 0i