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