<< convstr Strings evstr >>

Scilab Help >> Strings > emptystr

emptystr

長さ0の文字列

呼び出し手順

s = emptystr()

s = emptystr(a)

s = emptystr(m, n)

引数

a

大きさ m x nの行列

s

文字列の行列

m,n

整数

説明

長さ0の文字列の行列を返します.

入力引数を指定しない場合,長さ0の文字列を返します.

入力引数に行列を指定した場合,同じ大きさの長さ0の文字列行列を返します.

2個の整数を引数に指定した場合, m x n の長さ0の文字列行列を返します.

x=emptystr();
for k=1:10
    x = x + ',' + string(k)
    emptystr(1,k) + string(k)
end

参照


Report an issue
<< convstr Strings evstr >>