Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2026.0.0 - 日本語


atomsGetInstalled

Get the list of installed external modules

Syntax

installed = atomsGetInstalled(section)

Arguments

section

This argument filter the output list.

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

  • "all": atomsGetInstalled() lists external modules installed in both "user" and "allusers" sections.

  • "allusers": atomsGetInstalled() only lists external modules installed in the "allusers" section.

  • "user": atomsGetInstalled() only lists external modules installed in the "user" section.

The default value is "all".

installed

m x 5 matrix of strings

1st Col. 2nd Col. 3rd Col. 4th Col. 5th Col.
Module's name Version Installation section (allusers/user): this parameter determines whether the module has been installed for all users or only for the current user. Installation path Status: "I" stands for "Intentionally", "A" stands for "Automatically"

Description

atomsGetInstalled returns the list of installed external modules

Examples

atomsSetConfig("Verbose","True");

// Load the test repository
exec("SCI/modules/atoms/tests/unit_tests/atomsTestUtils.sce", -1);
repository = atomsCreateTestRepository("scene10");

atomsInstall("toolbox_5V6");
atomsGetInstalled();

// Cleaning
atomsRemove("toolbox_5V6");
atomsRepositoryDel(repository);

See also

  • atomsInstall — Install one or several external modules
  • atomsIsInstalled — Determines whether the module is installed. Returns true if the module is installed, false otherwise.
Report an issue
<< atomsGetConfig Atoms atomsGetInstalledPath >>

Copyright (c) 2022-2025 (Dassault Systèmes S.E.)
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:
Thu Oct 16 09:21:19 CEST 2025