Re: [Numpy-discussion] Naming a slice index?

2007-10-01 Thread Timothy Hochberg
On 10/1/07, Eagle Jones [EMAIL PROTECTED] wrote: New to python and numpy; hopefully I'm missing something obvious. I'd like to be able to slice an array with a name. For example: _T = 6:10 _R = 10:15 A = identity(20) foo = A[_T, _R] This doesn't work. Nor does _T=range(6:10); _R =

Re: [Numpy-discussion] Naming a slice index?

2007-10-01 Thread Robert Cimrman
Eagle Jones wrote: New to python and numpy; hopefully I'm missing something obvious. I'd like to be able to slice an array with a name. For example: _T = 6:10 _T = slice( 6, 10 ) ... ___ Numpy-discussion mailing list Numpy-discussion@scipy.org

[Numpy-discussion] adopting Python Style Guide for classes

2007-10-01 Thread Jarrod Millman
Hello, NumPy and SciPy should conform with Guido's style guide as closely as possible: http://www.python.org/dev/peps/pep-0008/ The only serious divergence that I am aware of between the NumPy and SciPy codebase and the Python recommended standards is in class naming. According to Guido, class