diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-27 19:52:01 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-27 19:52:01 +0000 |
commit | c6c45c053488a63057e7758dc9531f91d86cc5ce (patch) | |
tree | ab67007590b4180e33770066e12b337bb7e1945b /numpy/core/oldnumeric.py | |
parent | c3761a4940346ef33976f87879c9842110f0a968 (diff) | |
download | numpy-c6c45c053488a63057e7758dc9531f91d86cc5ce.tar.gz |
More missing names from Numeric.
Diffstat (limited to 'numpy/core/oldnumeric.py')
-rw-r--r-- | numpy/core/oldnumeric.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/numpy/core/oldnumeric.py b/numpy/core/oldnumeric.py index e00cdbe5a..38c35ee49 100644 --- a/numpy/core/oldnumeric.py +++ b/numpy/core/oldnumeric.py @@ -5,13 +5,13 @@ __all__ = ['asarray', 'array', 'concatenate', 'UFuncType', 'UfuncType', 'ArrayType', 'arraytype', 'LittleEndian', 'Bool', 'Character', 'UnsignedInt8', 'UnsignedInt16', 'UnsignedInt', - 'UInt8','UInt16','UInt32', 'UnsignedInt32', + 'UInt8','UInt16','UInt32', 'UnsignedInt32', 'UnsignedInteger', # UnsignedInt64 and Unsigned128 added below if possible # same for Int64 and Int128, Float128, and Complex128 'Int8', 'Int16', 'Int32', 'Int0', 'Int', 'Float0', 'Float', 'Complex0', 'Complex', - 'PyObject', 'Float32', 'Float64', - 'Complex32', 'Complex64', + 'PyObject', 'Float32', 'Float64', 'Float16', 'Float8', + 'Complex32', 'Complex64', 'Complex8', 'Complex16', 'typecodes', 'sarray', 'arrayrange', 'cross_correlate', 'matrixmultiply', 'outerproduct', 'innerproduct', # from cPickle @@ -112,6 +112,12 @@ PyObject = _dt_(nt.object_) Float32 = _dt_(nt.float32) Float64 = _dt_(nt.float64) +Float16='f' +Float8='f' +UnsignedInteger='L' +Complex8='F' +Complex16='F' + try: Float128 = _dt_(nt.float128) except AttributeError: |