B = squeeze(A)
| Parameter | Description |
|---|---|
| A | input array: multidimensional array |
| Parameter | Description |
|---|---|
| B | output array. |
B = squeeze(A) returns an array with the same elements as the input array A, but with dimensions of length 1 removed.
A = zeros(1, 1, 3);
A(:, :, 1:3) = [1 20 3];
R = squeeze(A)
| Version | Description |
|---|---|
| 1.0.0 | initial version |