1 <?xml version="1.0" encoding="UTF-8"?>
2 <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="en" xml:id="clearglobal">
4 <refname>clearglobal</refname>
5 <refpurpose>kills global variables</refpurpose>
8 <title>Calling Sequence</title>
9 <synopsis>clearglobal()
10 clearglobal nam1 ... namn
11 clearglobal('nam1', ...,'namn')
15 <title>Arguments</title>
18 <term>nam1,..., namn</term>
20 <para>valid variable names</para>
26 <title>Description</title>
28 <literal>clearglobal()</literal> kills all the global variables.
31 <literal>clearglobal nam1 ... namn</literal> kills the global variables given by
35 Note that <literal>clearglobal() </literal> only clears the global variables, the
36 local copies of these global variables are not destroyed.
40 <title>Examples</title>
41 <programlisting role="example"><![CDATA[
49 <refsection role="see also">
50 <title>See Also</title>
51 <simplelist type="inline">
53 <link linkend="global">global</link>
56 <link linkend="who">who</link>