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

« back to all changes in this revision

Viewing changes to man/eng/elementary/eval.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>eval</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="eval"> evaluation of a matrix of strings</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>[H]= eval(Z)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <DESCRIPTION>
 
13
    <P>
 
14
    returns the evaluation of the matrix of character strings <VERB>Z</VERB>.</P>
 
15
  </DESCRIPTION>
 
16
  <EXAMPLE>
 
17
<![CDATA[
 
18
a=1; b=2; Z=['a','sin(b)'] ; eval(Z)  //returns the matrix [1,0.909];
 
19
 ]]>
 
20
  </EXAMPLE>
 
21
  <SEE_ALSO>
 
22
    <SEE_ALSO_ITEM>
 
23
      <LINK>evstr</LINK>
 
24
    </SEE_ALSO_ITEM>
 
25
    <SEE_ALSO_ITEM>
 
26
      <LINK>execstr</LINK>
 
27
    </SEE_ALSO_ITEM>
 
28
  </SEE_ALSO>
 
29
</MAN>