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

« back to all changes in this revision

Viewing changes to man/fileio/scanf.cat

  • 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
 
scanf            Scilab Group            Scilab Function              scanf
2
 
NAME
3
 
   scanf  - Converts formatted input on standard input
4
 
  
5
 
CALLING SEQUENCE
6
 
  [v_1,...v_n]=scanf (format);
7
 
PARAMETERS
8
 
 format  :Specifies the format conversion.
9
 
         
10
 
DESCRIPTION
11
 
   The scanf functions get character data on standard input (%io(1)),
12
 
  interpret it according to a format, and returns the converted results.
13
 
  
14
 
   The format parameter contains conversion specifications used to interpret
15
 
  the input.
16
 
  
17
 
   The format parameter can contain white-space characters (blanks, tabs,
18
 
  newline, or formfeed) that, except in the following two cases, read the
19
 
  input up to the next nonwhite-space character. Unless there is a match in
20
 
  the control string, trailing white space (including a newline character)
21
 
  is not read.
22
 
  
23
 
 -    Any character except % (percent sign), which must match the next
24
 
      character of the input stream.
25
 
      
26
 
 -    A conversion specification that directs the conversion of the next
27
 
      input field. see scanf_conversion for details. 
28
 
      
29
 
SEE ALSO
30
 
   printf, read, fscanf, sscanf
31