2012-06-29から1日間の記事一覧

matplotlibでランダムウォークをアニメーション

matplotlibのanimation.FuncAnimationを利用すると(それなりに)簡単にアニメーションを作ることができる。animation ― Matplotlib v1.1.0 documentation使い方は次のようになっている。 class matplotlib.animation.FuncAnimation(fig, func, frames=None,…

Python & matplotlibでソートアルゴリズムを可視化

主語を大きく括った割にバブル、挿入、クイックの三種類しか用意してないです。参考:python - Updating a matplotlib bar graph? - Stack Overflow テンプレート import matplotlib import matplotlib.pyplot as plt import numpy as np from random import…