Re: [Numpy-discussion] error during pip install

2019-09-28 Thread Alan Isaac
On 9/28/2019 12:12 PM, Charles R Harris wrote: I'm actually pleased that the install succeeded on Window, although you won't have good BLAS/LAPACK, just the numpy C versions of lapack_lite. The warning/error is a bit concerning though, it would be nice to know if it is from Python3.8 pip or

Re: [Numpy-discussion] error during pip install

2019-09-28 Thread Alan Isaac
On Fri, Sep 27, 2019 at 10:12 AM Alan Isaac wrote: Upgrading numpy with pip on Python 3.8b4 on Win 10 produced: ERROR: Could not install packages due to an EnvironmentError: [WinError 123] The filename, directory name, or volume label syntax is incorrect: '&q

[Numpy-discussion] error during pip install

2019-09-27 Thread Alan Isaac
Upgrading numpy with pip on Python 3.8b4 on Win 10 produced: ERROR: Could not install packages due to an EnvironmentError: [WinError 123] The filename, directory name, or volume label syntax is incorrect: '"C:' However, the install appears to have been successful. fwiw, Alan

Re: [Numpy-discussion] Syntax Improvement for Array Transpose

2019-06-25 Thread Alan Isaac
re usually carefully considered. Cheers, Alan Isaac ___ NumPy-Discussion mailing list NumPy-Discussion@python.org https://mail.python.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Syntax Improvement for Array Transpose

2019-06-25 Thread Alan Isaac
east buggy transition away from np.matrix. But since `a.H` would not be a view of `a`, most probably any `a.H` proposal should be discarded as misleading and not materially better than the existing syntax (a.conj().T). I trust nobody is proposing to change `transpose`. Cheers,

Re: [Numpy-discussion] Syntax Improvement for Array Transpose

2019-06-24 Thread Alan Isaac
Iirc, that works only on (2-d) matrices. Cheers, Alan Isaac On 6/24/2019 10:45 AM, Todd wrote: I think the corresponding MATLAB function/operation is this: https://www.mathworks.com/help/matlab/ref/transpose.html ___ NumPy-Discussion mailing list

Re: [Numpy-discussion] Syntax Improvement for Array Transpose

2019-06-24 Thread Alan Isaac
Points of reference: Mathematica: https://reference.wolfram.com/language/ref/Transpose.html Matlab: https://www.mathworks.com/help/matlab/ref/permute.html Personally I would find any divergence between a.T and a.transpose() to be rather surprising. Cheers, Alan Isaac

[Numpy-discussion] folds and scans

2019-05-12 Thread Alan Isaac
`reduce` is certainly conceivable for the fold.) Thank you, Alan Isaac ___ NumPy-Discussion mailing list NumPy-Discussion@python.org https://mail.python.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] adding Quansight Labs as institutional partner

2019-04-09 Thread Alan Isaac
tton leads to a flipcause site that fails to clarify. I suspect many academic institutions would be interested in making occasional, modest contributions toward NumPy development, if the recipient and intended uses were entirely transparent. Cheers, Alan Isaac On 4/9/2019 3:10 AM, Ralf Gommers wrote

Re: [Numpy-discussion] align `choices` and `sample` with Python `random` module

2018-12-10 Thread Alan Isaac
cular case? Alan Isaac ___ NumPy-Discussion mailing list NumPy-Discussion@python.org https://mail.python.org/mailman/listinfo/numpy-discussion

[Numpy-discussion] align `choices` and `sample` with Python `random` module

2018-12-09 Thread Alan Isaac
functions in apparently similar cases. (I am not at all trying to claim that the argument against flag parameters is definitive; I'm just mentioning that this viewpoint has already been promulgated on this list.) Cheers, Alan Isaac ___ NumPy-Discussion ma

Re: [Numpy-discussion] Adding a return value to np.random.shuffle

2018-04-12 Thread Alan Isaac
Some people consider that not to be Pythonic: https://mail.python.org/pipermail/python-dev/2003-October/038855.html Alan Isaac On 4/12/2018 1:36 PM, Joseph Fox-Rabinovitz wrote: Would it break backwards compatibility to add the input as a return value to np.random.shuffle? I doubt anyone out