test_array_import.py :  » Math » SciPy » scipy » scipy » io » tests » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Math » SciPy 
SciPy » scipy » scipy » io » tests » test_array_import.py
#!/usr/bin/env python

# This python script tests the numpyio module.
# also check out numpyio.fread.__doc__ and other method docstrings.

import os
from numpy.testing import *
import scipy.io as io
from scipy.io import numpyio
from scipy.io import array_import

import numpy.oldnumeric as N
import tempfile

class TestNumpyio(TestCase):
    def test_basic(self):
        # Generate some data
        a = 255*rand(20)
        # Open a file
        fname = tempfile.mktemp('.dat')
        fid = open(fname,"wb")
        # Write the data as shorts
        numpyio.fwrite(fid,20,a,N.Int16)
        fid.close()
        # Reopen the file and read in data
        fid = open(fname,"rb")
        if verbose >= 3:
            print "\nDon't worry about a warning regarding the number of bytes read."
        b = numpyio.fread(fid,1000000,N.Int16,N.Int)
        fid.close()
        assert(N.product(a.astype(N.Int16) == b,axis=0))
        os.remove(fname)

class TestReadArray(TestCase):
    def test_complex(self):
        a = rand(13,4) + 1j*rand(13,4)
        fname = tempfile.mktemp('.dat')
        io.write_array(fname,a)
        b = io.read_array(fname,atype=N.Complex)
        assert_array_almost_equal(a,b,decimal=4)
        os.remove(fname)

    def test_float(self):
        a = rand(3,4)*30
        fname = tempfile.mktemp('.dat')
        io.write_array(fname,a)
        b = io.read_array(fname)
        assert_array_almost_equal(a,b,decimal=4)
        os.remove(fname)

    def test_integer(self):
        from scipy import stats
        a = stats.randint.rvs(1,20,size=(3,4))
        fname = tempfile.mktemp('.dat')
        io.write_array(fname,a)
        b = io.read_array(fname,atype=a.dtype.char)
        assert_array_equal(a,b)
        os.remove(fname)

class TestRegression(TestCase):
    def test_get_open_file_works_with_filelike_objects(self):
        f = tempfile.TemporaryFile()
        f2 = array_import.get_open_file(f)
        assert f2 is f
        f.close()

if __name__ == "__main__":
    run_module_suite()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.