diff options
author | rupak | 2019-08-09 18:23:51 +0530 |
---|---|---|
committer | rupak | 2019-08-09 18:23:51 +0530 |
commit | 85bde50698bbdfd891ef194cd700d9a659bd50cd (patch) | |
tree | 5b09ea04150f1e11a18022e2145817d84828d563 /help/en_US/c_sum.xml | |
download | fossee-scilab-octave-toolbox-85bde50698bbdfd891ef194cd700d9a659bd50cd.tar.gz fossee-scilab-octave-toolbox-85bde50698bbdfd891ef194cd700d9a659bd50cd.tar.bz2 fossee-scilab-octave-toolbox-85bde50698bbdfd891ef194cd700d9a659bd50cd.zip |
first commit
Diffstat (limited to 'help/en_US/c_sum.xml')
-rw-r--r-- | help/en_US/c_sum.xml | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/help/en_US/c_sum.xml b/help/en_US/c_sum.xml new file mode 100644 index 0000000..fe04116 --- /dev/null +++ b/help/en_US/c_sum.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * This file is released under the 3-clause BSD license. See COPYING-BSD. + * + --> +<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns3="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="c_sum" xml:lang="en"> + <refnamediv> + <refname>c_sum</refname> + <refpurpose>sum from C</refpurpose> + </refnamediv> + <refsynopsisdiv> + <title>Syntax</title> + <synopsis>a = c_sum(b,c)</synopsis> + </refsynopsisdiv> + <refsection> + <title>Arguments</title> + <variablelist> + <varlistentry> + <term>b</term> + <listitem> + <para>first input argument</para> + </listitem> + </varlistentry> + <varlistentry> + <term>c</term> + <listitem> + <para>second input argument</para> + </listitem> + </varlistentry> + <varlistentry> + <term>a</term> + <listitem> + <para>output argument</para> + </listitem> + </varlistentry> + </variablelist> + </refsection> + <refsection> + <title>Description</title> + <para>Do a sum.</para> + <para>Add here a paragraph of the function description </para> + <para> + LaTeX can also be used to render equation: In this case, the rendering should <latex>$x+y$</latex> + </para> + </refsection> + <refsection> + <title>Examples</title> + <programlisting role="example">c_sum(3,4)</programlisting> + </refsection> + <refsection role="see also"> + <title>See also</title> + <simplelist type="inline"> + <member> + <link linkend="fortran_sum">fortran_sum</link> + </member> + <member> + <link type="scilab" linkend="scilab.help/sum">Link to the Scilab help page</link> + </member> + </simplelist> + </refsection> +</refentry> |