~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/fr/strings/convstr.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>convstr</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="convstr"> case conversion</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>[y]=convstr(str-matrix, [&quot;flag&quot;])   </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>str-matrix, y</PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>: matrices of strings</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>&quot;flag&quot;  </PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>: string (<VERB>&quot;u&quot;</VERB> for upper or <VERB>&quot;l&quot;</VERB> for lower (default value))</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
    </PARAM_INDENT>
 
27
  </PARAM>
 
28
  <DESCRIPTION>
 
29
    <P>
 
30
    converts the matrix of strings <VERB>str-matrix</VERB>
 
31
    into lower case (for <VERB>&quot;l&quot;</VERB> ;default value) or
 
32
    upper case (for <VERB>&quot;u&quot;</VERB>).</P>
 
33
  </DESCRIPTION>
 
34
  <EXAMPLE>
 
35
<![CDATA[
 
36
A=['this','is';'my','matrix'];
 
37
convstr(A,'u')
 
38
 ]]>
 
39
  </EXAMPLE>
 
40
</MAN>