Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - Français


num2cell

converts an array into a cell array

Syntax

y=num2cell(x [,dims])

Arguments

x

a real, an integer, a boolean or a string matrix

dims

a scalar or a vector of positive integers

y

a cell

Description

num2cell converts x which is a real, a boolean, or a string matrix into a cell. If dims is not mentioned, y will have the same size as x.

But if dims is present, the dimensions of x mentioned in dims will be reduced to 1. Moreover, the dimensions of y components will be equal to the dimensions sizes of x whose numbers are in dims vector.

For example, if size(x)=[2 3 4 5 6] and dims=[2 4], then size(y)= [2 1 4 1 6], that is the sizes of the second and the fourth dimensions are reduced to 1. And size(y(i))= [1 3 1 5 1], which means that the sizes of the second and the fourth dimensions are equal to the sizes of the second and the fourth ones of x.

Examples

A = [1 2; 3 4]
num2cell(A)
M = matrix(1:24, [2 3 2 2])
c=num2cell(M,[1 2])
size(c)
size(c{1})

A = ["a", "b"; "c" "d"]
num2cell(A)

See also

  • cell — creates a cell array of empty matrices
  • cell2mat — converts a cell array into a matrix
Report an issue
<< makecell cells bool2s >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Mar 27 10:12:38 GMT 2023