- Aide de Scilab
- Fonctions Elémentaires
- Nombres complexes
- Mathématiques discrètes
- Matrices élémentaires
- Exponentielle
- Virgule flottante
- Bases de numération
- Manipulation de matrices
- Opérations matricielles
- Chercher et trier
- Opérations sur les ensembles
- Traitement du signal
- Trigonométrie
- Bitwise operations
- and
- &
- lstsize
- modulo
- or
- |
- sign
- size
- cat
- cell2mat
- cellstr
- iscolumn
- isempty
- isequal
- ismatrix
- isrow
- isscalar
- issquare
- isvector
- ndims
- nthroot
- num2cell
- unwrap
cellstr
converts strings vector (or strings matrix) into a cell array of strings
Syntax
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"])
Comments
Add a comment:
Please login to comment this page.