Skip to content

Commit bd9214e

Browse files
committed
docs: fix versioned numpy URLs in README to use /stable/
- Remove version suffix from broadcasting URL: stable-1.15.0 → stable - Fix indexing URL path: reference/arrays.indexing → user/basics.indexing Both URLs now point to the latest stable numpy documentation.
1 parent 46f2d32 commit bd9214e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Here is a comparison code between NumSharp and NumPy (left is python, right is C
1717

1818
### Bold Features
1919
* Use of Unmanaged Memory and fast unsafe algorithms.
20-
* [Broadcasting](https://numpy.org/doc/stable-1.15.0/user/basics.broadcasting.html) n-d shapes against each other. ([intro](https://machinelearningmastery.com/broadcasting-with-numpy-arrays/))
21-
* [NDArray Slicing](https://numpy.org/doc/stable/reference/arrays.indexing.html) and nested/recusive slicing (`nd["-1, ::2"]["1::3, :, 0"]`)
20+
* [Broadcasting](https://numpy.org/doc/stable/user/basics.broadcasting.html) n-d shapes against each other. ([intro](https://machinelearningmastery.com/broadcasting-with-numpy-arrays/))
21+
* [NDArray Slicing](https://numpy.org/doc/stable/user/basics.indexing.html) and nested/recusive slicing (`nd["-1, ::2"]["1::3, :, 0"]`)
2222
* Axis iteration and support in all of our implemented functions.
2323
* Full and precise (to numpy) automatic type resolving and conversion (upcasting, downcasting and other cases)
2424
* Non-copy - most cases, similarly to numpy, does not perform copying but returns a view instead.

0 commit comments

Comments
 (0)