|
Contents | Previous | Next | Subchapters |
| Syntax |
flipud(matrix)
|
| See Also | fliplr , sort , reverse |
x = { ...
[ 1 , 2 , 3 ] , ...
[ 4 , 5 , 6 ] ...
}
flipud(x)
O-Matrix will respond
{
[ 4 , 5 , 6 ]
[ 1 , 2 , 3 ]
}
reverse is faster because it is an intrinsic function.