- Manuel Scilab
- Fonctions Elémentaires
- Mathématiques discrètes
- Virgule flottante
- Représentation d'entier
- Trigonométrie
- abs
- amell
- and
- &
- cumprod
- cumsum
- delip
- diag
- exp
- eye
- gsort
- imag
- intersect
- inttrap
- isdef
- isreal
- kron
- lex_sort
- linspace
- log
- log10
- log2
- logm
- logspace
- lstsize
- max
- meshgrid
- min
- modulo
- norm
- ones
- or
- |
- pen2ea
- prod
- rand
- real
- resize_matrix
- sign
- signm
- size
- solve
- sqrt
- sqrtm
- squarewave
- sum
- syslin
- toeplitz
- trianfml
- tril
- trisolve
- triu
- union
- unique
- zeros
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- diff
- dsearch
- flipdim
- imult
- ind2sub
- isempty
- isequal
- isequalbitwise
- isvector
- log1p
- ndgrid
- ndims
- nextpow2
- permute
- pertrans
- setdiff
- ssrand
- sub2ind
- sysconv
- sysdiag
- trfmod
- typeof
- vectorfind
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
char
char function
Calling Sequence
y=char( x) y=char(st1,st2,st3,....)
Arguments
- x
a cell of strings arrays, or an array of ascii codes
- st1,st2,st3
strings arrays
- y:
a strings vector(column)
Description
One input argument :
Given a cell of strings arrays x
, this function
returns a strings vector y
in which the rows are the
components of the strings cell
Given an array of ascii codes x,
this function
returns a strings array y
corresponding into ascii
codes. If dims (x
)=[n1,n2,n3,n4,....],then returned
value have same size as input value instead of second dims,
dims(y
)=[n1,n3,n4,..]
More than one input argument :
Given strings arrays
st1,st2,st3,...
, this function returns a vector of
strings in which the rows are the components of st1,st2,st3,...
In the vector
y
the length
of all strings sti is completed by blanks, to have the same length than
the lengthmax of sti.
Examples
See Also
Authors
F.B
<< cellstr | Fonctions Elémentaires | diff >> |