Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
whereis
Returns the name of the loaded library/module a given function belongs to
Syntax
libmod = whereis(function)
Arguments
- function
Name (text) or handle of a Scilab "macro" or builtin function. Both kinds of input are equivalent.
- libmod
If
function
points to- a function written in Scilab language and registered with
genlib in some loaded library:
libmod
returns the name of the library. - an unregistered user-defined function written in Scilab language:
libmod
returns"script"
. - a builtin function (so-called Scilab primitive): the name of the
module the
function
belongs to is returned. - Otherwise:
libmod
returns[]
.
- a function written in Scilab language and registered with
genlib in some loaded library:
Description
whereis
allows to identify the library of Scilab macros or the
module a given function belongs to.
When the function is
- a "macro" (written in Scilab language and compiled):
it may be not loaded (not yet called), but its library must be so.
When the same function name is registered in several loaded libraries of macros,
whereis
returns the name of all of them.libraryinfo(..) allows to retrieve the path to definition files of a library.
- Since Scilab 6.0: When, in the mymacro.sci file defining a public
macro mymacro() registered in a library, some additional functions
are defined after mymacro(), these additional functions are NOT
registered in the library.
So,
whereis
ignores them and will return[]
for them. See the Examples section. - When a module like
xcos
has sublibraries, these ones are often loaded in Scilab only after the first call to the main function (likexcos()
). As a consequence,whereis(..)
querried for a function of such a sublibrary will return[]
, until the main function -- likexcos()
-- is called a first time. See the Examples section.
- Since Scilab 6.0: When, in the mymacro.sci file defining a public
macro mymacro() registered in a library, some additional functions
are defined after mymacro(), these additional functions are NOT
registered in the library.
So,
- a user-defined function registered in no library
but defined
- directly in the console by
deff(..)
or byfunction ... endfunction
, or - in a file loaded in the Scilab session with
exec(functionfile.sci)
or withgetd(..)
,
whereis
returns"script"
. When this function is defined in a file, there is no way to retrieve the file path and name. - directly in the console by
- a builtin written and compiled in an external language (C, C++..):
whereis
returns the name of the module the function belongs to. More precisely, the name of the "gateway" is returned. It matches the module's name for all cases except foraction_binding_gw, functions_gw, matio_gw, signal_processing_gw, statistics_gw
, for which"_gw"
is appended to the module name.The gateway file is located at
SCI/modules/moduleName/gateway/moduleName_gateway.xml
, wheremoduleName
must be replaced with the actual module name.
In the case that the function name is simultaneously defined as a unregistered function
("script"), and as a registered one in a library and as a builtin,
whereis returns only one kind of answer with the likely priorities:
builtin's module > macro's library > "script" for unregistered macro .
However, the actual result may vary (and be []). |
Examples
// Case of an unregistered macro: function myTest(), disp("Unregistered function"), endfunction whereis("myTest") // => "script" // Case of a registered macro: r = whereis("ls") // => "fileiolib" [?,path]= libraryinfo(r); path // => "SCI\modules\fileio\macros\" // Let's define another ls() in another library: path = TMPDIR+"/myls"; mkdir(path); mputl("function ls(), disp(""my other ls() in lslib""), endfunction", path+"/ls.sci"); genlib("lslib", path); whereis ls // => ["fileiolib"; "lslib"] // Case of a builtin function whereis sin // => "elementary_functions" whereis conv2 // => "signal_processing_gw" // Case of an unregistered macro defined/loaded after a registered one: clear ls lslib whereis ls // "fileiolib" : OK function ls(), disp("my local ls()"), endfunction ls // => "my local ls()" whereis ls // => "fileiolib", still clear ls // (cleaning up) // Dependencies are ignored: // chfact() has some private dependency functions blkfc1(), inpnv(), etc: edit chfact // chfact() is registered: whereis chfact // => "sparselib" // .. but not its dependencies: whereis blkfc1 // => [] // Sublibraries may be loaded only after the first call to a main driving function: // CLR() is a public function related to the CLR Xcos block belonging to the // Linear palette and declared in the Linearlib library. // But this sublibrary is loaded only after a first call to xcos(): whereis xcos // => "xcoslib" whereis CLR // => [], if you never called xcos() in the session yet. xcos() // => loads all its sublibraries. Please ignore the interfaces. // You may even close them. whereis CLR // => "Linearlib" non-empty answer, now
See also
- genlib — build library from functions in given directory
- libraryinfo — get macros and path of a scilab library
- lib — library definition
- getmodules — returns list of modules installed in Scilab
History
Version | Description |
6.0 |
|
Report an issue | ||
<< varargout | Advanced functions | Testing & benchmarking >> |