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

« back to all changes in this revision

Viewing changes to man/scicos/WFILE_f.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
WFILE_f            Scilab Group            Scicos Block             WFILE_f
 
2
NAME
 
3
   WFILE_f - Scicos "write to file" block
 
4
  
 
5
DIALOGUE PARAMETERS
 
6
 input size           : a scalar. This fixes the input size
 
7
                      
 
8
 Output file name     : a character string defining the path of the file 
 
9
                      
 
10
 Output Format        : a character string defining the Fortran format to
 
11
                      use or nothing for an unformatted (binary) write. If
 
12
                      given, the format must began by a left parenthesis
 
13
                      and end by a right  parenthesis. example: (e10.3).
 
14
                      
 
15
 Buffer size          : To improve efficiency it is possible to buffer the
 
16
                      input data. write on the file is only done after each
 
17
                      Buffer size calls to the block.
 
18
                      
 
19
DESCRIPTION
 
20
   This block allows user to save data in a file, in formatted and binary
 
21
  mode. Each call to the block corresponds to a record in the file. Each
 
22
  record has the following form: [t,V1,...,Vn] where t is the value of time
 
23
  when block is called  and Vi is the ith input value
 
24
  
 
25
SEE ALSO
 
26
   RFILE_f         
 
27