1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) 2009 - DIGITEO - Vincent COUVERT
5 *
6 * Copyright (C) 2012 - 2016 - Scilab Enterprises
7 *
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.
14 *
15 -->
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:id="m2sci_clear">
17    <refnamediv>
18        <refname>clear (Matlab function)</refname>
19        <refpurpose>Remove items from workspace, freeing up system memory</refpurpose>
20    </refnamediv>
21    <refsection>
22        <title>Matlab/Scilab equivalent</title>
23        <informaltable border="1" width="100%">
24            <tr>
25                <td align="center">
26                    <emphasis role="bold">Matlab</emphasis>
27                </td>
28                <td align="center">
29                    <emphasis role="bold">Scilab</emphasis>
30                </td>
31            </tr>
32            <tr>
33                <td>
34                    <programlisting role="no-scilab-exec"><![CDATA[
35clear
36clear myvar
37clear variables
38clear global myvar
39]]></programlisting>
40                </td>
41                <td>
42                    <programlisting role="no-scilab-exec"><![CDATA[
43clear
44clear myvar
45clear
46clearglobal myvar
47]]></programlisting>
48                </td>
49            </tr>
50        </informaltable>
51    </refsection>
52</refentry>
53