Scilab 6.0.0
- Scilab Help
- ATOMS
- Getting started
- Functions Summary
- atomsAutoload
- atomsAutoloadAdd
- atomsAutoloadDel
- atomsAutoloadList
- atomsCategoryList
- atomsCheckModule
- atomsDepTreeShow
- atomsGetConfig
- atomsGetInstalled
- atomsGetInstalledPath
- atomsGetLoaded
- atomsGetLoadedPath
- atomsInstall
- atomsIsInstalled
- atomsIsLoaded
- atomsList
- atomsLoad
- atomsQuit
- atomsRemove
- atomsRepositoryAdd
- atomsRepositoryDel
- atomsRepositoryList
- atomsRestoreConfig
- atomsSaveConfig
- atomsSearch
- atomsSetConfig
- atomsShow
- atomsSystemInit
- atomsSystemUpdate
- atomsTest
- atomsUpdate
- atomsVersion
Scilab Help >> ATOMS > atomsLoad
atomsLoad
Load one or several external modules
Syntax
result = atomsLoad(name) result = atomsLoad(name, version)
Arguments
- name
Matrix of strings: External module name
- version
Matrix of strings: External module version. This is an optional parameter. If it's not defined, the most recent version of the module is used.
- result
4xn character string matrix:
1st Col. Technical name 2nd Col. Version 3rd Col. Installation section this parameter determines whether the module has been installed for all users or only for the current user. 4th Col. Installation path
Description
atomsLoad
load one or more external
modules.
Examples
atomsSetConfig("Verbose","True"); atomsRepositoryAdd("http://scene1.test.atoms.scilab.org"); atomsInstall(["toolbox_2" "1.0"]); atomsInstall(["toolbox_2" "2.0"]); atomsLoad(["toolbox_2" "1.0"]); t2_version() t2_function1() atomsRemove("toolbox_2");
See Also
- atomsIsLoaded — determines whether a module is loaded or not
- atomsGetLoaded — Get the list of loaded external modules
- atomsInstall — Get the list of loaded external modules
Comments
Add a comment:
Please login to comment this page.