Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2026.0.0 - Português


atomsRepositoryList

Get the list of managed repositories

Syntax

repositories = atomsRepositoryList()
repositories = atomsRepositoryList(section)

Arguments

section

This argument controls the list of section where search URL(s).

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

  • "all": URL(s) present in the "user", "allusers" and "official" section are listed.

  • "allusers": only URL(s) present in the "allusers" section are listed.

  • "user": only URL(s) present in the "user" section are listed.

  • "official": only URL(s) present in the "official" section are listed.

The default value is "all".

repositories

Matrix of strings : the first column gives the list of repositories managed by ATOMS and the second column indicates if the repository is an official repository, if the repository has been added for all users or only for the current user.

Description

atomsRepositoryList returns a matrix that gives the list of available repositories.

Examples

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

atomsRepositoryList()
atomsRepositoryList('all')
atomsRepositoryList('official')
atomsRepositoryList('allusers')
atomsRepositoryList('user')

// Cleaning
atomsRepositoryDel(repository);

See also

Report an issue
<< atomsRepositoryDel ATOMS atomsRestoreConfig >>

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:15:47 CEST 2025