Navigation

Operators and Keywords

Function List:

C++ API

: flipud (x)

Flip array upside down.

Return a copy of x with the order of the rows reversed. In other words, x is flipped upside-down about a horizontal axis. For example:

flipud ([1, 2; 3, 4])
     ⇒  3  4
         1  2

See also: fliplr, flip, rot90, rotdim.

Package: octave