5 lines
No EOL
80 B
Matlab
5 lines
No EOL
80 B
Matlab
function X=flipall(X)
|
|
for i=1:ndims(X)
|
|
X = flipdim(X,i);
|
|
end
|
|
end |