Optimized squeeze()

This commit is contained in:
Waldir Leoncio 2020-07-14 11:18:01 +02:00
parent bb44d0cfd4
commit a27f303f4a
2 changed files with 7 additions and 10 deletions

View file

@ -24,6 +24,10 @@ a 3-by-1-by-1-by-2 array, then squeeze(A) returns a 3-by-2 matrix. If A is a
row vector, column vector, scalar, or an array with no dimensions of length
1, then squeeze returns the input A.
}
\note{
This is basically a wrapper of drop() with a minor adjustment to adapt
the output to what happens on Matlab
}
\author{
Waldir Leoncio
}