Scilab 5.3.0
- Scilab Online Help
- Elementary Functions
- Discrete mathematics
- Floating point
- Integer representation
- Trigonometry
- abs
- amell
- and
- &
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- cumprod
- cumsum
- delip
- diag
- diff
- dsearch
- exp
- eye
- flipdim
- gsort
- imag
- imult
- ind2sub
- intersect
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isreal
- isvector
- kron
- lex_sort
- linspace
- log
- log10
- log1p
- log2
- logm
- logspace
- lstsize
- max
- maxi
- meshgrid
- min
- mini
- modulo
- ndgrid
- ndims
- nextpow2
- norm
- ones
- or
- |
- pen2ea
- permute
- pertrans
- prod
- rand
- real
- resize_matrix
- setdiff
- sign
- signm
- size
- solve
- sort
- sqrt
- sqrtm
- squarewave
- ssrand
- sub2ind
- sum
- sysconv
- sysdiag
- syslin
- toeplitz
- trfmod
- trianfml
- tril
- trisolve
- triu
- typeof
- union
- unique
- vectorfind
- zeros
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 関数
呼び出し手順
y=char( x) y=char(st1,st2,st3,....)
パラメータ
- x
文字列配列のセル, またはアスキーコードの配列
- st1,st2,st3
文字列配列
- y:
文字列(列)ベクトル
説明
入力引数が一つの場合 :
文字列配列x
のセルを指定すると, この関数は
文字列セルの要素を行とする文字列ベクトル y
を返します.
アスキーコードx
の配列を指定すると,
この関数はそのアスキーコードに対応する文字列の配列 y
を返します.
dims (x
)=[n1,n2,n3,n4,....],
は,2番目の dims 以外は入力値と同じ大きさの値,
dims(y
)=[n1,n3,n4,..]
を返します.
入力引数が1より多い場合 :
文字列配列
st1,st2,st3,...
を指定すると, この関数は,
st1,st2,st3,...
の要素が行となる
文字列のベクトルを返します.
ベクトル y
において,
文字列の長さ sti は空白で埋めることにより,
stiの最長のものと同じ長さとする必要があります.
例
参照
作者
F.B
<< cellstr | Elementary Functions | cumprod >> |