LoginSignup
0
1

More than 5 years have passed since last update.

[Resolved] Scipy lecture notes, Edition 2017.1 > typo > 3.1.4 > 2D arrays (such as images)

Last updated at Posted at 2018-04-02

@ Scipy lecture notes, Edition 2017.1
https://www.scipy-lectures.org/_downloads/ScipyLectures-simple.pdf
p53
3.1.4 Basic Visualization

2D arrays (such as images)

>>> image = np.random.rand(30, 30)
>>> plt.imshow(image, cmap=plt.cm.hot)
<matplotlib.image.AxesImage object at ...>
>>> plt.colorbar()
<matplotlib.colorbar.Colorbar object at ...>

コードが2D arraysのものではなく、1D plottingのものになっている。

Web版だけ修正されている。

@ https://www.scipy-lectures.org/intro/numpy/array_object.html#basic-visualization

連絡した。
https://github.com/scipy-lectures/scipy-lecture-notes/issues/369

Edition 2017.2に修正版が入ることになるのだろうか?
(ハイライト情報がなくなる。。。)

こういう間違いはJupyterでドキュメントを作り、PDFにしていれば起きないことかもしれない。

修正された

(追記 2018/04/09)

修正されたPDFファイルとなっている。
https://www.scipy-lectures.org/_downloads/ScipyLectures-simple.pdf

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1