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

« back to all changes in this revision

Viewing changes to man/eng/programming/toc.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>toc</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>June 2004</DATE>
 
8
  <SHORT_DESCRIPTION name="toc">Read the stopwatch timer</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>toc()</CALLING_SEQUENCE_ITEM>
 
11
    <CALLING_SEQUENCE_ITEM>t = toc()</CALLING_SEQUENCE_ITEM>
 
12
  </CALLING_SEQUENCE>
 
13
  <PARAM>
 
14
  <PARAM_INDENT>
 
15
    <PARAM_ITEM>
 
16
      <PARAM_NAME>t</PARAM_NAME>
 
17
      <PARAM_DESCRIPTION>
 
18
        <SP>: number of seconds since last call to <VERB>tic()</VERB> (Precision in order of millisecond).</SP>
 
19
      </PARAM_DESCRIPTION> 
 
20
    </PARAM_ITEM>
 
21
  </PARAM_INDENT>
 
22
  </PARAM>
 
23
  <DESCRIPTION>
 
24
    <P>The sequence of commands <VERB>tic(); operation; toc();</VERB> prints the number of seconds required for the operation.</P>
 
25
   </DESCRIPTION>
 
26
  <EXAMPLE>
 
27
<![CDATA[
 
28
tic();
 
29
realtimeinit(1);
 
30
realtime(0);
 
31
realtime(10);
 
32
toc();
 
33
 ]]>
 
34
  </EXAMPLE>
 
35
  <SEE_ALSO>
 
36
    <SEE_ALSO_ITEM><LINK>tic</LINK></SEE_ALSO_ITEM>
 
37
    <SEE_ALSO_ITEM><LINK>timer</LINK></SEE_ALSO_ITEM>
 
38
    <SEE_ALSO_ITEM><LINK>etime</LINK></SEE_ALSO_ITEM>
 
39
  </SEE_ALSO>
 
40
  <AUTHORS>
 
41
    <AUTHORS_ITEM>V.C.</AUTHORS_ITEM>
 
42
    <AUTHORS_ITEM>A.C.</AUTHORS_ITEM>
 
43
  </AUTHORS>
 
44
</MAN>