MATLAB: Flipping a Cell Array

cell arrays

I have an m x n cell array and I need to flip the 2:m elements vertically. Flipud doesn't seem to be working neither does flipdim(…,1). Suggestions?
Edit: I'm using R2012a.

Best Answer

NewCell = YourCell([1, m:-1:2], :);