Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はヘルピーが初めてで、iPython27で以下をプロットしようとしています:
import numpy as np import healpy as hp NSIDE = 32 m=np.arange(hp.nside2npix(NSIDE)) hp.mollview(m, title="Mollview image RING")
私が期待していたように、これは画像を返しません。何が問題なのですか?
matplotlib プロットを表示するには、IPython をセットアップする必要があります。
IPython コンソールを使用している場合
%matplotlib
IPython ノートブックの場合
%matplotlib inline