Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - Русский

Change language to:
English - Français - 日本語 - Português -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Справка Scilab >> ATOMS > atomsAutoloadAdd

atomsAutoloadAdd

Add one or several modules to autoload

Syntax

nbAdd = atomsAutoloadAdd(modules[,section])

Arguments

modules

mx1, mx2 or mx3 Matrix of strings:

1st Col. Technical name Mandatory
2nd Col. Version Optional If this field is empty or is not present, the most recent version is used
3rd Col. Installed section Optional If this field is empty or is not present, and module is installed in both "user" and "allusers" sections, the section of autoload list is used.
section

This argument controls which autoload list is changed.

section is a single-string and its value should be :

  • "allusers": modules are added to the "allusers" autoload list and all users of scilab are affected.

  • "user": modules are added to the "user" autoload list and only the current user is affected.

If SCI/contrib is write accessible, "allusers" is the default value. Otherwise, the default value is "user".

nbAdd

An integer : the number of modules successfully added.

Description

Examples

atomsRepositoryAdd('http://scene1.test.atoms.scilab.org');
atomsSetConfig("autoloadAddAfterInstall","False");

atomsInstall("toolbox_5","user");
atomsAutoloadList()

atomsAutoloadAdd("toolbox_5","user");
atomsAutoloadList()

atomsAutoloadDel(["toolbox_5"]);
atomsAutoloadAdd(["toolbox_5" "1.0"],"user");
atomsAutoloadList()

atomsAutoloadDel("toolbox_5");
atomsAutoloadAdd(["toolbox_5" "1.0" "user"],"user");
atomsAutoloadList()

atomsRemove("toolbox_5","user");
atomsSetConfig("autoloadAddAfterInstall","True");
atomsRepositoryDel('http://scene1.test.atoms.scilab.org');

atomsAutoloadList()

See also

Report an issue
<< atomsAutoload ATOMS atomsAutoloadDel >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:13:37 CET 2017