This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Fermi分布函数をmatplotlibで書いてみる | |
# 一般的な注意 | |
# matplotlibはmatlab流とobject流で呼び出す函数名が変わるので注意が必要. ここで使っているのはobject流. | |
# 細かい調整はobject流の方ができるのでobject流をお勧めする. | |
# 参考文献は例えば https://qiita.com/skotaro/items/08dc0b8c5704c94eafb9 | |
import matplotlib.pyplot as plt | |
import numpy as np |