Scilab 5.3.0
- Scilab Online 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
lasterror
直近に記録されたエラーメッセージを取得
呼出し手順
str=lasterror( [opt] ) [str,n]=lasterror([opt]) [str,n,line,func]=lasterror([opt])
パラメータ
- str
文字列のベクトルまたは空の行列. 直近に記録されたエラーメッセージ.
- n
整数, 0 または直近に記録されたエラー番号.
- line
整数, 0 または直近に記録された関数行番号.
- func
文字列, 直近に記録された関数名
- opt
論理値, %f の場合, 記録されたメッセージはクリアされる. デフォルトは %t.
説明
エラーが発生する度に, Scilab エラーハンドラは,
内部テーブルにそれを記録します(直近のエラーのみ保持されます).
lasterror
関数により,このテーブルから
メッセージ,エラー番号,カレントの関数およびその関数における
カレントの行番号を取得できます.
出力される行番号は,直近にエラーが発生した 物理的な行番号です. 5.0 より前のバージョンの Scilab では 論理的な 行番号が出力されていたことに注意してください. エラーを発生した関数において,エラーを発生するより前の部分に 継続行 (dot参照)が含まれる場合のに差異を生じます.
この関数は,errcatch または execstrを使用する場合に特に有用です.
記録されたエラーメッセージは,
lasterror(%f)
とコールすることにより次回
lasterror
をコールする時のために保持する
ことができます.
<< isglobal | Scilab | macr2lst >> |