- Scilab help
- Scilab
- Scilab keywords
- TMPDIR
- abort
- add_demo
- argn
- banner
- boolean
- break
- clear
- clearfun
- clearglobal
- comp
- continue
- debug
- delbpt
- dispbpt
- edit
- errcatch
- errclear
- error
- error_table
- exists
- exit
- external
- extraction
- format
- funcprot
- funptr
- getdebuginfo
- getmd5
- getmemory
- getmodules
- getos
- getscilabmode
- getshell
- getvariablesonstack
- getversion
- gstacksize
- ieee
- insertion
- intppty
- inv_coeff
- iserror
- isglobal
- lasterror
- macr2lst
- macr2tree
- matrices
- matrix
- mode
- mtlb_mode
- names
- newfun
- null
- pause
- perl
- poly
- predef
- quit
- rational
- readgateway
- resume
- sciargs
- scilab
- setbpt
- sethomedirectory
- stacksize
- startup
- symbols
- testmatrix
- type
- typename
- user
- varn
- ver
- warning
- what
- where
- whereami
- who
- who_user
- whos
- with_atlas
- with_gtk
- with_javasci
- with_macros_source
- with_module
- with_pvm
- with_texmacs
- with_tk
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
mode
ファイル実行のモードを選択
呼び出し手順
mode(k) k = mode()
説明
ファイル実行またはScilab関数の中で排他的にに
使用され,mode(k)
はk
の値に応じて
次のように実行時に表示される情報を変更することができます:
- k = 0
新しい変数の値が必要に応じて表示されます (セミコロンまたはカンマのヘルプを参照).
- k = -1
ファイル実行またはScilab関数の実行時の 表示を行いません. (これはScilab関数に関するデフォルト値です)
- k = 2
Scilabプロンプトのデフォルト値.
このモードはプロンプトでは使用されず, ファイル実行またはScilab関数でのみ使用されることに注意してください.
- k = 1 または k = 3
命令の各行はプロンプトの前に表示されます. 新しい変数の値は必要に応じて表示されます. これはファイル実行時のデフォルトです.
- k = 4 または k = 7
新しい変数の値は必要に応じて表示され, 各行の命令は表示され, プロンプト (>>) がキャレッジリターンを待つ各行の 後に出力されます.
キャレッジリターンの後に "p" が続く場合, 実行は中断されています(pause参照).
- k > 7
ユーザモード. ユーザが独自のモードを定義した場合, 100 より大きい値を使用することが推奨されます.
コンパイル済みのScilab関数(comp参照)の場合,行の表示は無効化されます. デフォルトでScilab関数はサイレントモード("-1")で実行されます.
関数ライブラリ内の関数は, "-1" モードで実行されます.
例
// scilab内にコピー/ペーストしてください function example_mode(level_mode) mode(level_mode) a = 3 disp(mode()); endfunction mode(2) example_mode(0) example_mode(-1) example_mode(2) example_mode(1) example_mode(3) example_mode(7) mode(2)
参照
<< matrix | Scilab | mtlb_mode >> |