Skip to content

Commit

Permalink
DOC: Updated link to numpy documentation.
Browse files Browse the repository at this point in the history
NumPy documentation now (finally) lives at numpy.org. Changed link
to scipy.org/numpy/doc to location of numpy devdocs.

Grepped through other .markdown files and didn't notice any other
references to the numpy documentation.
  • Loading branch information
rossbar committed Feb 11, 2020
1 parent 9aa9fb1 commit 5a1d1d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown/ch1.markdown
Expand Up @@ -364,7 +364,7 @@ print(outer.shape)

You can see for yourself that `outer[i, j] = x[i] * y[j]` for all `(i, j)`.

This was accomplished by NumPy's [broadcasting rules](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html), which implicitly expand dimensions of size 1 in one array to match the corresponding dimension of the other array.
This was accomplished by NumPy's [broadcasting rules](https://numpy.org/devdocs/user/basics.broadcasting.html), which implicitly expand dimensions of size 1 in one array to match the corresponding dimension of the other array.
Don't worry, we will talk about these rules in more detail later in this chapter.

As we will see in the rest of the chapter, as we explore real data, broadcasting is extremely valuable for real-world calculations on arrays of data.
Expand Down

0 comments on commit 5a1d1d8

Please sign in to comment.