- Scilabヘルプ
- Functions
- Built-in & external
- Libraries
- profiling
- argn
- bytecode
- bytecodewalk
- code2str
- comp
- deff
- edit
- exec
- execstr
- fun2string
- funcprot
- function
- functions
- getd
- head_comments
- listfunctions
- macr2lst
- macr2tree
- macro
- macrovar
- mode
- overloading
- recompilefunction
- sciargs
- str2code
- tree2code
- varargin
- varargout
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
edit
関数を編集
呼出し手順
edit(functionname[,linenumber])
引数
- functionname
文字列
- linenumber
整数
説明
functionname
が定義済みの
Scilab関数の名前の場合,
edit(functionname)
は
関連するファイル functionname.sci
を
オープンします.
functionname
が未定義のScilab関数の名前の場合,
edit
はカレントのディレクトリに
functionname.sci
ファイルを作成します.
functionname
が有効なマクロまたは
関数名でない場合,
edit(functionname)
は
functionname
に等しいファイル名を有する
ファイルをオープンします.
linenumber
が指定された場合,
ファイルはファイル名自体と同じ名前のマクロの
定義を基準としてこの行でオープンします.
マクロ定義が見つからない場合,
ファイルが指定したlinenumber
行目で
オープンされます.
例
//この関数へのテキストを指定したエディタをオープン edit('edit') //新しい関数に関してエディタをオープン edit('myfunction') //TMPDIRディレクトリのファイルbar.sciをオープン edit(fullfile(TMPDIR+'bar.sci')) // test_run()の定義を基準として // ファイルtest_run.sciの123行目をオープン edit('test_run', 123)
Report an issue | ||
<< deff | Functions | exec >> |