| Home | Trees | Indices | Help |
|
|---|
|
|
Module with Class and Functions to read MatLab(tm) 5 compatible data files
2005-07-01: fixed problem with big-endian machines. 2006-05-25: moved to numpy module and removed unnecessary code.
|
|||
|
matStruct Python representation of a ML Struct Array. |
||
|
matObject Python representation of a ML Object. |
||
| matFile | ||
|
|||
|
_split_fixed_width(sequence,
width) Split a sequence into fixed width parts and return a list of them. |
||
|
read(filename) Read a complete ML file and return content as a Workspace. |
||
|
|||
|
__author__ = ['Heiko Henkelmann <heiko@hhenkelmann.de>', 'Roberto...
|
||
|
__version__ = (0, 1, 2)
|
||
|
miINT8 = 1
|
||
|
miUINT8 = 2
|
||
|
miINT16 = 3
|
||
|
miUINT16 = 4
|
||
|
miINT32 = 5
|
||
|
miUINT32 = 6
|
||
|
miSINGLE = 7
|
||
|
miDOUBLE = 9
|
||
|
miINT64 = 12
|
||
|
miUINT64 = 13
|
||
|
miMATRIX = 14
|
||
|
miNumbers = (1, 2, 3, 4, 5, 6, 7, 9, 12, 13)
|
||
|
miDataTypes = {1: ('miINT8', 1, '1'), 2: ('miUINT8', 1, '1'), 3: (...
|
||
|
miDataTypesArray = {1: ('miINT8', 1, 'b'), 2: ('miUINT8', 1, 'B'), 3: (...
|
||
|
mxCELL_CLASS = 1
|
||
|
mxSTRUCT_CLASS = 2
|
||
|
mxOBJECT_CLASS = 3
|
||
|
mxCHAR_CLASS = 4
|
||
|
mxSPARSE_CLASS = 5
|
||
|
mxDOUBLE_CLASS = 6
|
||
|
mxSINGLE_CLASS = 7
|
||
|
mxINT8_CLASS = 8
|
||
|
mxUINT8_CLASS = 9
|
||
|
mxINT16_CLASS = 10
|
||
|
mxUINT16_CLASS = 11
|
||
|
mxINT32_CLASS = 12
|
||
|
mxUINT32_CLASS = 13
|
||
|
mxArrays = (4, 6, 7, 8, 9, 10, 11, 12, 13)
|
||
|
mxArrayTypes = {1: 'mxCELL_CLASS', 2: 'mxSTRUCT_CLASS', 3: 'mxOBJEC...
|
||
Imports: struct, array, cStringIO, numpy
|
|||
|
|
|
|||
__author__None
|
__version__None
|
miINT8None
|
miUINT8None
|
miINT16None
|
miUINT16None
|
miINT32None
|
miUINT32None
|
miSINGLENone
|
miDOUBLENone
|
miINT64None
|
miUINT64None
|
miMATRIXNone
|
miNumbersNone
|
miDataTypesNone
|
miDataTypesArrayNone
|
mxCELL_CLASSNone
|
mxSTRUCT_CLASSNone
|
mxOBJECT_CLASSNone
|
mxCHAR_CLASSNone
|
mxSPARSE_CLASSNone
|
mxDOUBLE_CLASSNone
|
mxSINGLE_CLASSNone
|
mxINT8_CLASSNone
|
mxUINT8_CLASSNone
|
mxINT16_CLASSNone
|
mxUINT16_CLASSNone
|
mxINT32_CLASSNone
|
mxUINT32_CLASSNone
|
mxArraysNone
|
mxArrayTypesNone
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0alpha3 on Mon Nov 13 21:49:06 2006 | http://epydoc.sourceforge.net |