Skip to content

Commit

Permalink
revise nd
Browse files Browse the repository at this point in the history
  • Loading branch information
astonzhang committed Nov 28, 2018
1 parent dec06df commit ccddf5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter_prerequisite/ndarray.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ B = nd.arange(2).reshape((1, 2))
A, B
```

由于`A``B`分别是3行1列和1行2列的矩阵,如果要计算`A+B`,那么`A`中第一列的三个元素被广播(复制)到了第二列,而`B`中第一行的两个元素被广播(复制)到了第二行和第三行。如此,我们就可以对两个3行2列的矩阵按元素相加。
由于`A``B`分别是3行1列和1行2列的矩阵,如果要计算`A + B`,那么`A`中第一列的三个元素被广播(复制)到了第二列,而`B`中第一行的两个元素被广播(复制)到了第二行和第三行。如此,我们就可以对两个3行2列的矩阵按元素相加。

```{.python .input}
A + B
Expand Down

0 comments on commit ccddf5d

Please sign in to comment.