Skip to content

Commit

Permalink
* la/LICENSE, RELEASE: Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwgoodman committed May 25, 2010
1 parent d9f84c9 commit 01617b2
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 9 deletions.
4 changes: 3 additions & 1 deletion ChangeLog
@@ -1,11 +1,13 @@
2010-05-25 Keith

* la/LICENSE, RELEASE: Update.

* doc/source/intro.rst: Tweak.

* deflarry(morph): Big speed boost for medium to large larrys, small slow
down for small (1d, len 10) larrys. But this gets all the mapping to use
a common function (listmap) which can be optimized further. This change
also speeds up merge which used morph.
also speeds up merge which uses morph.

2010-05-24 Keith

Expand Down
9 changes: 3 additions & 6 deletions RELEASE
Expand Up @@ -8,23 +8,20 @@ la 0.3 (banana)

*Release date: Not yet released, in development*

The focus of this release is stability: unit tests, bug fixes, API cleaning,
and documentation.

New larry methods
-----------------
- astype: Copy of larry cast to specified type
- geometric_mean: new method based on existing array function

New functions
-------------
- la.util.resample.cv: k-fold cross validation index iterator
- la.util.resample.boot: bootstrap index iterator
- la.util.resample.cross_validation: k-fold cross validation index iterator
- la.util.resample.bootstrap: bootstrap index iterator
- la.util.misc.listmap: O(n) version of map(list1.index, list2)

Enhancements
------------
- Performance: Faster binary operations (+, *, etc) and faster larry methods
- Major performance improvement in most larry methods!
- You can now use an optional dtype when creating larrys
- Add ability to compare (==, >, !=, etc) larrys with lists and tuples
- Documentation and unit tests
Expand Down
38 changes: 36 additions & 2 deletions la/LICENSE
@@ -1,5 +1,5 @@
larry is distributed under a BSD license. Parts of Scipy and numpydoc, which
both have BSD licenses, are included in larry.
larry is distributed under a Simplified BSD license. Parts of NumPy, Scipy and
numpydoc, which all have BSD licenses, are included in larry.

---------------------------------------------------------------------------
la license:
Expand Down Expand Up @@ -29,6 +29,40 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

---------------------------------------------------------------------------
NumPy license:

Copyright (c) 2005-2009, NumPy Developers.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.

* Neither the name of the NumPy Developers nor the names of any
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

---------------------------------------------------------------------------
SciPy license:

Expand Down

0 comments on commit 01617b2

Please sign in to comment.