~ubuntu-branches/ubuntu/oneiric/python-scipy/oneiric-proposed

« back to all changes in this revision

Viewing changes to scipy/io/info.py

  • Committer: Bazaar Package Importer
  • Author(s): Sameer Morar
  • Date: 2011-02-03 04:28:09 UTC
  • mfrom: (9.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110203042809-qs95kuod7723re62
Tags: 0.8.0+dfsg1-1ubuntu1
* Merge from debian experimental (LP: #696403). Remaining changes:
  - debian/patches/stdc_format_macros.patch: Fix FTBFS issue with python 2.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Data input and output
3
3
=====================
4
4
 
5
 
  Classes
6
 
 
7
 
     npfile -- a class for reading and writing numpy arrays from / to binary files
8
 
     Cache
9
 
     DataSource
10
 
     Repository
11
 
 
12
5
  Functions
13
6
 
14
 
     read_array -- reading ascii streams into NumPy arrays
15
 
     write_array -- write an array to an ascii stream
16
 
     loadmat -- read a MATLAB style mat file (version 4 and 5)
17
 
     savemat -- write a MATLAB (version <= 4) style mat file
18
 
 
19
 
     fread -- low-level reading
20
 
     fwrite -- low-level writing
21
 
     bswap -- in-place byte-swapping
22
 
     packbits -- Pack a binary array of 1's and 0's into an array of bytes
23
 
     unpackbits -- Unpack an array packed by packbits.
24
 
 
25
 
     save --- simple storing of Python dictionary into module
 
7
     loadmat -- read a MATLAB style mat file (version 4 through 7.1)
 
8
     savemat -- write a MATLAB (version through 7.1) style mat file
 
9
     netcdf_file -- read NetCDF files (version of ``pupynere`` package)
 
10
     save_as_module -- simple storing of Python dictionary into module
26
11
               that can then be imported and the data accessed as
27
12
               attributes of the module.
28
 
 
29
13
     mminfo   -- query matrix info from Matrix Market formatted file
30
14
     mmread   -- read matrix from Matrix Market formatted file
31
15
     mmwrite  -- write matrix to Matrix Market formatted file
 
16
     wavfile  -- module to read / write wav files using numpy arrays
 
17
     arrf     -- read files in Arff format
32
18
 
33
19
"""
34
20
postpone_import = 1