Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
completion
パラメータとして指定したテキストから始まる単語を返す.
呼び出し手順
r = completion(beginning_of_a_word) r = completion(beginning_of_a_word,dictionary) [functions, commands, variables, macros, graphic_properties, files] = completion(beginning_of_a_word) [functions, commands, variables, macros, graphic_properties] = completion(beginning_of_a_word) [functions, commands, variables, macros] = completion(beginning_of_a_word) [functions, commands, variables] = completion(beginning_of_a_word) [functions, commands] = completion(beginning_of_a_word)
パラメータ
- r
文字列行列
- beginning_of_a_word
文字列
- dictionary
文字列 ("functions", "commands", "variables", "macros", "graphic_properties", "files")
- functions, commands, variables, macros, graphic_properties, files
文字列
説明
パラメータとして指定したテキストから始まる単語を返します.
functions: 関数名の文字列行列 (C ゲートウエイ). 'what'参照.
commands: コマンドの文字列行列 (予約). 'what'参照.
variables: 変数名の文字列行列. 'who'参照.
macros: マクロ名の文字列行列.'who'参照.
graphic_properties: 文字列行列x
files: 文字列行列
例
r = completion('w') r = completion('w','functions') r = completion('w','commands') r = completion('w','variables') r = completion('w','macros') r = completion('w','graphic_properties') r = completion('w','files') [functions,commands,variables,macros,graphic_properties,files] = completion('w') [functions,commands,variables,macros,graphic_properties] = completion('w') [functions,commands,variables,macros] = completion('w') [functions,commands,variables] = completion('w') [functions,commands] = completion('w')
参照
- getscilabkeywords — Scilabキーワードを全リストを返す.
- who — 変数の一覧
- what — Scilabプリミティブの一覧を得る
- libraryinfo — マクロとscilabライブラリのパスを取得
- librarieslist — scilabライブラリを取得
Report an issue | ||
<< clc | Console | console >> |