1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) XXXX-2008 - INRIA
6 * Copyright (C) 2012 - 2016 - Scilab Enterprises
8 * This file is hereby licensed under the terms of the GNU GPL v2.0,
9 * pursuant to article 5.3.4 of the CeCILL v.2.1.
10 * This file was originally licensed under the terms of the CeCILL v2.1,
11 * and continues to be available under such terms.
12 * For more information, see the COPYING file which you should have received
13 * along with this program.
16 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:lang="ru" xml:id="getscilabkeywords">
18 <refname>getscilabkeywords</refname>
20 возвращает список всех ключевых слов Scilab.
24 <title>Синтаксис</title>
25 <synopsis>list_keywords=getscilabkeywords()</synopsis>
28 <title>Аргументы</title>
31 <term>list_keywords</term>
39 <title>Описание</title>
40 <para>list_keywords(1) : примитивы</para>
41 <para>list_keywords(2) : команды</para>
42 <para>list_keywords(3) : предопределённые переменные</para>
43 <para>list_keywords(4) : функции scilab</para>
44 <para>list_keywords(5) : функции xcos</para>
47 <title>Примеры</title>
48 <programlisting role="example"><![CDATA[
49 list_keywords = getscilabkeywords();
50 primitives = list_keywords(1)
51 commands = list_keywords(2)
52 predef_var = list_keywords(3)
53 scilab_functions = list_keywords(4)
54 xcos_functions = list_keywords(5)