Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Elementary Functions > Matrix manipulation > squeeze

squeeze

removes singleton dimensions of a hypermatrix

Syntax

hypOut = squeeze(hypIn)

Arguments

hypIn

a hypermatrix or matrix of constant type.

hypOut

a hypermatrix or matrix of constant type.

Description

The squeeze function removes singleton dimensions of a hypermatrix, that is any dimension for which the size is 1. If the input hypIn is a matrix, it is unaffected.

Examples

M1 = zeros(2,1,5)
squeeze(M1)
squeeze(M1(:,:,1))

M2 = hypermat([2 1 2 1],1:4)
squeeze(M2)

See Also

  • hypermat — initializes an N dimensional matrix
  • hypermatrices — a Scilab object, N dimensional matrix in Scilab
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:33 CEST 2016