- Scilab Help
- Elementary Functions
- Bitwise operations
- Complex
- Discrete mathematics
- Elementary matrices
- Log - exp - power
- Floating point
- Radix conversions
- Matrix manipulation
- Matrix operations
- Search and sort
- Set operations
- Signal processing
- Symbolic
- Trigonometry
- IsAScalar
- and
- &
- cat
- cell2mat
- cellstr
- iscolumn
- isempty
- isequal
- ismatrix
- isrow
- isscalar
- issquare
- isvector
- lstsize
- modulo
- ndims
- nthroot
- num2cell
- or
- |
- sign
- size
- unwrap
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
cellstr
converts strings vector (or strings matrix) into a cell array of strings
Calling Sequence
c=cellstr(s)
Arguments
- s
strings vector, or strings matrix
Description
returns a cell array of strings
If
s
is a row vector of strings thencellstr(s)
returns a one-by-one cell array which contains one component (the concatenation of all column components ofs
.If
s
is a column vector of strings thencellstr(s)
convertss
into a cell array of strings which have the same size :size(s,1)
-by-one.If
s
is a matrix of strings then for each rowi
ofs
,cellstr(s)
concatenates all the components of thei
th rows of the matrixs
(i.es(i,1)
,s(i,2)
,s(i,3)
,...) and returns asize(s,1)
-by-one cell array of strings.
Examples
cellstr("foo") cellstr(["sci","lab"]) cellstr(["abc","def",'gh';"i","j","klm"])
See Also
Report an issue | ||
<< cell2mat | Elementary Functions | iscolumn >> |