mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-01 00:20:18 +00:00
5 lines
80 B
Matlab
5 lines
80 B
Matlab
function X=flipall(X)
|
|
for i=1:ndims(X)
|
|
X = flipdim(X,i);
|
|
end
|
|
end |