Why does squeezing leading singleton dimensions produce inconsistent results
Mostrar comentarios más antiguos
For example consider the following
size(squeeze(zeros([1 1 10])))
ans =
10 1
is the transpose of
size(squeeze(zeros([1 10])))
ans =
1 10
Respuestas (1)
James Tursa
el 4 de Jun. de 2015
Editada: James Tursa
el 4 de Jun. de 2015
0 votos
This behavior is documented:
"B = squeeze(A) returns an array B with the same elements as A, but with all singleton dimensions removed. A singleton dimension is any dimension for which size(A,dim) = 1. Two-dimensional arrays are unaffected by squeeze."
Categorías
Más información sobre Robust Control Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!