matlab之flipud()函数

此函数实现矩阵的上下翻转。fliplw()实现左右旋转。

举例:

a =[1 2;3 4;5 6]

 flipud(a)的结果:

5 6
3 4
1 2

 fliplr(a)的结果:

2 1
4 3
6 5

单词flip在牛津词典中的第一条意思就是:

1.(使)快速翻转,迅速翻动 
to turn over into a different position with a sudden quick movement; to make sth do this

flipud=flip up and down

fliplw=flip left and write

原文地址:https://www.cnblogs.com/yibeimingyue/p/9867345.html