Scilab 5.3.3
- Scilab help
- ATOMS
- Getting started
- Functions Summary
- atomsAutoloadAdd
- atomsAutoloadDel
- atomsAutoloadList
- atomsCategoryList
- atomsDepTreeShow
- atomsGetInstalled
- atomsGetLoaded
- atomsInstall
- atomsIsInstalled
- atomsIsLoaded
- atomsList
- atomsLoad
- atomsRemove
- atomsRepositoryAdd
- atomsRepositoryDel
- atomsRepositoryList
- atomsSearch
- atomsSetConfig
- atomsShow
- atomsSystemUpdate
- atomsUpdate
Scilab help >> ATOMS > atomsSetConfig
atomsSetConfig
Manage ATOMS system parameters
Calling Sequence
result = atomsSetConfig(parameter,value)
Arguments
- parameter
single-string matrix
- value
single-string matrix
- result
- Number of changed parameters
Proxy
| Parameter | Description | Values |
|---|---|---|
| useProxy | Use/Don't use proxies | True/False |
| proxyHost | the hostname (IP or DNS name) | |
| proxyPort | the port | |
| proxyUser | Specify the username for authentication on a proxy server | |
| proxyPassword | Specify the password for authentication on a proxy server |
Network
| Parameter | Description | Values |
|---|---|---|
| offLine | If set to "True", the system only works with local repositories. The offline mode permits the user to install modules from a local repository or a local package (hard disk, USB keys, ...) even if the network is unreachable. | True/False |
Autoload System
| Parameter | Description | Values |
|---|---|---|
| autoload | Enable/Disable autoload system | True/False |
| autoloadAddAfterInstall | Automatically add a module to the list of module to autoload at Scilab start | True/False |
Miscellenous
| Parameter | Description | Values |
|---|---|---|
| verbose | Display or not extra-informations | True/False |
Description
atomsSetConfig returns the list of modules registered to autoload
Examples
// Display extra-informations atomsSetConfig('Verbose','True') // Disable autoload system atomsSetConfig('autoload','False')
Authors
- Pierre MARECHAL - DIGITEO
| << atomsSearch | ATOMS | atomsShow >> |