Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
readgateway
モジュールのプリミティブの一覧を取得
呼出し手順
readgateway(module_name) primitives = readgateway(module_name); [primitives,primitivesID] = readgateway(module_name); [primitives,primitivesID,gatewayID] = readgateway(module_name);
引数
- module_name
文字列
- primitives, primitivesID, gatewayID
文字列の行列
説明
readgateway(module_name)
は,
module_name
の
プリミティブの一覧を取得します.
primitives
: module_name
のプリミティブの一覧.
primitivesID
: プリミティブのIDの一覧.
gatewayID
: module_name
に関連するゲートウエイのIDの一覧
例
[primitives,primitivesID,gatewayID] = readgateway('core'); primitives(1) // 'debug' primitive primitivesID(1) // 1 is ID of 'debug' in 'core' gateway gatewayID(1) // 13 is ID of 'core' gateway in scilab
参照
- getmodules — Scilabにインストールされているモジュールの一覧を返す
Report an issue | ||
<< newfun | Built-in & external | what >> |