Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.2 - Русский

Change language to:
English - Français - 日本語 - Português -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Справка Scilab >> Основные функции > num2cell

num2cell

converts an array into a cell array

Calling Sequence

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 = hypermat([2 3 2 2],1:24)
c=num2cell(M,[1 2])
size(c)
size(c(1).entries)

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

See Also

  • cell — создаёт cell-массив пустых матриц
  • cell2mat — преобразование cell-массива в матрицу
Report an issue
<< issquare Основные функции unwrap >>

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:
Wed Apr 01 10:27:16 CEST 2015