SciPy.org SciPy 0.6.0 API Documentation Generated by Endo, 2007-10-17
Class for reading and writing binary files into numpy arrays.

Inputs:

  file_name -- The complete path name to the file to open.
  permission -- Open the file with given permissions: ('r', 'H', 'a')
                for reading, writing, or appending.  This is the same
                as the mode argument in the builtin open command.
  format -- The byte-ordering of the file:
            (['native', 'n'], ['ieee-le', 'l'], ['ieee-be', 'B']) for
            native, little-endian, or big-endian respectively.

Attributes (Read only):

  bs -- non-zero if byte-swapping is performed on read and write.
  format -- 'native', 'ieee-le', or 'ieee-be'
  closed -- non-zero if the file is closed.
  mode -- permissions with which this file was opened
  name -- name of the file

Attributes

Method summary

Methods