雑感等

音楽,数学,語学,その他に関するメモを記す.

2020-12-01から1ヶ月間の記事一覧

JupyterLabでコード整形(フォーマッタはautopep8)を導入

下記のサイトのコードだと"black"とかいうフォーマッタを使った例になってるらしい(一般名詞で大変紛らわしい) https://jupyterlab-code-formatter.readthedocs.io/en/latest/how-to-use.html { "shortcuts": [ { "command": "jupyterlab_code_formatter:b…

scipyのsolve_ivpでローレンツ方程式を解く

以下のページを参考にした. https://org-technology.com/posts/ordinary-differential-equations.html https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.solve_ivp.html from scipy.integrate import solve_ivp import matplotlib.py…

フィボナッチ数列の兎の個体数増加をグラフで

フィボナッチ数列的な個体数の変化を,下記リンクの図のように表したかった. https://commons.wikimedia.org/wiki/File:FibonacciRabbit.svg 生成される図は下記のようになる. 上記の図は以下のプログラムで生成した. import matplotlib.pyplot as plt fr…