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

« back to all changes in this revision

Viewing changes to man/fileio/readb.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
 
readb            Scilab Group            Scilab Function              readb
2
 
NAME
3
 
   readb - fortran file binary read 
4
 
  
5
 
CALLING SEQUENCE
6
 
 x=readb(file-name,m,n [,rec])
7
 
PARAMETERS
8
 
 file-name  : string or integer 
9
 
            
10
 
 m, n       : integers (dimensions of the matrix x). Set m=-1 if you do
11
 
            not know the numbers of rows, so all the file is read
12
 
            
13
 
 rec        : vector of positive integers. the selected records for direct
14
 
            access. This vector size must be equal to the number of rows of
15
 
            desired x.
16
 
            
17
 
DESCRIPTION
18
 
   binary read of the matrix x in the file file-name. Matrix entries are
19
 
  supposed to have been stored on 8 byte words.
20
 
  
21
 
   For direct record access, file must have been previously opened using
22
 
  file function to set the record_length. file-name must be the result of
23
 
  the file function. 
24
 
  
25
 
SEE ALSO
26
 
   file, write, writb, mget, read4b
27