Scilab 5.5.2
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
who_user
ユーザ変数の一覧
呼び出し手順
varList = who_user([bPrint])
引数
- bPrint
画面出力を有効または無効にする (デフォルト:
%t).
返り値
- varList
ユーザ変数の列ベクトルまたはユーザが変数が有さない場合に
[].
説明
who_user は,ユーザの変数名を表示し,ユーザ変数名を返します.
例
clear; who_user() who_user(%t) who_user(%f) a = 1; b = 2; who_user() who_user(%t) who_user(%f) clear;
履歴
| バージョン | 記述 |
| 5.4.0 | who_user はユーザ変数名を
文字列の列ベクトルで返すようになりました. |
| Report an issue | ||
| << who | Variables | whos >> |