[Numpy-discussion] next NumPy Optimization Team meeting - TOMORROW, February 10th, 2025 at 5 pm UTC

2025-02-09 Thread Inessa Pawson via NumPy-Discussion
Hi, all!
The next NumPy Optimization Team meeting will be held TOMORROW, February
10th at 17:00 UTC.
Join us via Zoom:
https://numfocus-org.zoom.us/j/81261288210?pwd=iwV99tGSjR61RTGEERKM4QKxe46g1n.1
Everyone is welcome and encouraged to attend.
To add to the meeting agenda the topics you’d like to discuss, follow the
link: https://hackmd.io/dVdSlQ0TThWkOk0OkmGsmw?both
For the notes from the previous meetings, visit:
https://github.com/numpy/archive/tree/main/optim_team_meetings

-- 
Cheers,
Inessa

Inessa Pawson
GitHub: inessapawson
___
NumPy-Discussion mailing list -- numpy-discussion@python.org
To unsubscribe send an email to numpy-discussion-le...@python.org
https://mail.python.org/mailman3/lists/numpy-discussion.python.org/
Member address: arch...@mail-archive.com


[Numpy-discussion] Re: next Documentation team meeting

2025-02-09 Thread Mukulika Pahari via NumPy-Discussion
Hi all,

Our next Documentation Team meeting will happen on *Monday, February 10* at 
*7PM UTC*. 

All are welcome - you don't need to already be a contributor to join. If you 
have questions or are curious about what we're doing, we'll be happy to meet 
you!

If you wish to join on Zoom, use this (updated) link:
https://numfocus-org.zoom.us/j/85016474448?pwd=TWEvaWJ1SklyVEpwNXUrcHV1YmFJQ...

Here's the permanent hackmd document with the meeting notes (still being
updated):
https://hackmd.io/oB_boakvRqKR-_2jRV-Qjg

Hope to see you around!

Best wishes,
Mukulika
___
NumPy-Discussion mailing list -- numpy-discussion@python.org
To unsubscribe send an email to numpy-discussion-le...@python.org
https://mail.python.org/mailman3/lists/numpy-discussion.python.org/
Member address: arch...@mail-archive.com


[Numpy-discussion] Proposal of a new feature - Vectorized Sampling Without Replacement

2025-02-09 Thread Adly Thebaud via NumPy-Discussion
Hello,

This is my first time engaging with Numpy, so forgive me if I am emailing
the wrong address.

I am inquiring about a feature I'd like to propose. It is to address GitHub
issue #28084 . I saw that
there was positive reception to the proposed signature and
functionality proposed
by Warren Weckesser
, who
is a member of Numpy team (according to GitHub).

I will be pushing up a pull request soon, please let me know if this is a
good feature to pursue or if I should hold off on it.

Thanks,

Adly Thebaud
___
NumPy-Discussion mailing list -- numpy-discussion@python.org
To unsubscribe send an email to numpy-discussion-le...@python.org
https://mail.python.org/mailman3/lists/numpy-discussion.python.org/
Member address: arch...@mail-archive.com


[Numpy-discussion] next NumPy community meeting - Wednesday, February 12th, 2025 at 6 pm UTC

2025-02-09 Thread Inessa Pawson via NumPy-Discussion
The next NumPy community meeting will be held this Wednesday, February 12th
at 18:00 UTC.
Join us via Zoom:
https://numfocus-org.zoom.us/j/83278611437?pwd=ekhoLzlHRjdWc0NOY2FQM0NPemdkZz09
Everyone is welcome and encouraged to attend.
To add to the meeting agenda the topics you’d like to discuss, follow the
link: https://hackmd.io/76o-IxCjQX2mOXO_wwkcpg?both
For the notes from the previous meetings, visit:
https://github.com/numpy/archive/tree/main/community_meetings

-- 
Cheers,
Inessa

Inessa Pawson
GitHub: inessapawson
___
NumPy-Discussion mailing list -- numpy-discussion@python.org
To unsubscribe send an email to numpy-discussion-le...@python.org
https://mail.python.org/mailman3/lists/numpy-discussion.python.org/
Member address: arch...@mail-archive.com


[Numpy-discussion] Add diagonal offset argument to all functions that are missing it

2025-02-09 Thread Carlos Martin
The following functions accept a diagonal offset argument:
- https://numpy.org/doc/stable/reference/generated/numpy.diag.html
- https://numpy.org/doc/stable/reference/generated/numpy.diagflat.html
- https://numpy.org/doc/stable/reference/generated/numpy.diagonal.html
- https://numpy.org/doc/stable/reference/generated/numpy.eye.html
- https://numpy.org/doc/stable/reference/generated/numpy.trace.html
- https://numpy.org/doc/stable/reference/generated/numpy.tri.html
- https://numpy.org/doc/stable/reference/generated/numpy.tril.html
- https://numpy.org/doc/stable/reference/generated/numpy.tril_indices.html
- https://numpy.org/doc/stable/reference/generated/numpy.tril_indices_from.html
- https://numpy.org/doc/stable/reference/generated/numpy.triu.html
- https://numpy.org/doc/stable/reference/generated/numpy.triu_indices.html
- https://numpy.org/doc/stable/reference/generated/numpy.triu_indices_from.html

The following functions lack such an argument:
- https://numpy.org/doc/stable/reference/generated/numpy.diag_indices.html
- https://numpy.org/doc/stable/reference/generated/numpy.diag_indices_from.html
- https://numpy.org/doc/stable/reference/generated/numpy.fill_diagonal.html
- https://github.com/numpy/numpy/issues/14402
- https://github.com/numpy/numpy/issues/18000
- https://github.com/numpy/numpy/pull/15079
- https://numpy.org/doc/stable/reference/generated/numpy.identity.html

Feature request: Add a diagonal offset argument to all of the functions that 
are missing it. (fill_diagonal is already tracked by the aforementioned issues, 
but the rest aren't, to my knowledge.)
___
NumPy-Discussion mailing list -- numpy-discussion@python.org
To unsubscribe send an email to numpy-discussion-le...@python.org
https://mail.python.org/mailman3/lists/numpy-discussion.python.org/
Member address: arch...@mail-archive.com