* Bug #10718 fixed - New "Resize" property added to figures.
+* Bug #10805 fixed - Documentation on left bracket was superfluous and is now removed.
+ Refer to brackets for information on "[" and "]".
+
* Bug #10816 fixed - Typo in part error message fixed.
* Bug #10830 fixed - Hypermatrix insertion with a negative index returned a wrong error message.
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<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="left">
- <refnamediv>
- <refname>left</refname>
- <refpurpose>([) left bracket</refpurpose>
- </refnamediv>
- <refsynopsisdiv>
- <title>Calling Sequence</title>
- <synopsis>[a11,a12,...;a21,a22,...;...]
- [s1,s2,...]=func(...)
- </synopsis>
- </refsynopsisdiv>
- <refsection>
- <title>Arguments</title>
- <variablelist>
- <varlistentry>
- <term>a11,a12,... </term>
- <listitem>
- <para>matrix of any compatible types with compatible dimensions</para>
- </listitem>
- <term>s1,s2,... </term>
- <listitem>
- <para>any possible variable name</para>
- </listitem>
- </varlistentry>
- </variablelist>
- </refsection>
- <refsection>
- <title>Description</title>
- <para>
- Left and right brackets are used for vector and matrix concatenation.
- These symbols are also used to denote a multiple left-hand-side for a function call
- </para>
- <para>
- Inside concatenation brackets blank or comma characters mean "column concatenation",
- semicolon and carriage-return mean "row concatenation".
- </para>
- <para>
- <note>
- Note : to avoid confusions it is safer to use comma instead of blank to
- separate columns.
- </note>
- </para>
- <para>
- Within multiple lhs brackets variable names must be separated by comma.
- </para>
- </refsection>
- <refsection>
- <title>Examples</title>
- <programlisting role="example"><![CDATA[
-[6.9,9.64; sqrt(-1) 0]
-[1 +%i 2 -%i 3]
-[]
-['this is';'a string';'vector']
-s=poly(0,'s');[1/s,2/s]
-[tf2ss(1/s),tf2ss(2/s)]
-
-[u,s]=schur(rand(3,3))
- ]]></programlisting>
- </refsection>
- <refsection role="see also">
- <title>See Also</title>
- <simplelist type="inline">
- <member>
- <link linkend="comma">comma</link>
- </member>
- <member>
- <link linkend="semicolon">semicolon</link>
- </member>
- </simplelist>
- </refsection>
-</refentry>