Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
deff
関数のオンライン定義
呼び出し手順
deff('[s1, s2,...] = newfunction(e1, e2,...)',text)
引数
- e1, e2, ...
入力変数.
- s1, s2, ...
出力変数.
- text
文字列行列
説明
deff
はテキスト文字列で記述された一連の命令から
関数を定義する際に使用されます.
得られる関数オブジェクトはテキストファイルで定義され,
exec
または exec
で
定義された他の関数と同じ特性を有しています.
命令の中の引用符(文字列の区切りまたは行列の転置を意味する)は, ただしく解釈されるように二重化する必要があります(quoteのヘルプを参照). この仕様のため,作成作業はやや不便となります.
例
deff('[x]=myplus(y,z)','x=y+z') deff('[x]=mymacro(y,z)',['a=3*y+1'; 'x=a*z+y'])
Report an issue | ||
<< argn | Functions | edit >> |