<< atomsGetInstalledPath ATOMS atomsGetLoadedPath >>

Scilab Help >> ATOMS > atomsGetLoaded

atomsGetLoaded

Get the list of loaded external modules

Syntax

loaded = atomsGetLoaded()

Arguments

loaded

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

atomsGetLoaded returns the list of loaded 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");
atomsLoad("toolbox_5V6");

disp(atomsGetLoaded());

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

// Please restart Scilab to remove installed module

See also


Report an issue
<< atomsGetInstalledPath ATOMS atomsGetLoadedPath >>