diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-02 16:37:59 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-02 16:37:59 +0000 |
commit | a1e9a90654afd97b7bf45d318019966684935c51 (patch) | |
tree | 5c5c3601352080794a99abab4cfb1655d52328c8 /numpy/matlib.py | |
parent | b5048ddf5c8a305e9635bc3ad988e6da78fe0a31 (diff) | |
download | numpy-a1e9a90654afd97b7bf45d318019966684935c51.tar.gz |
Add diagflat. Begin to add numarray compatibility
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r-- | numpy/matlib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/matlib.py b/numpy/matlib.py index 3e1bf0493..43bed3eb5 100644 --- a/numpy/matlib.py +++ b/numpy/matlib.py @@ -47,3 +47,5 @@ def randn(*args): if isinstance(args[0], tuple): args = args[0] return asmatrix(N.random.rand(*args)) + + |