python
1コード 2import matplotlib.pyplot as plt 3import numpy as np 4 5 6X, Y = np.mgrid[:5, :6] 7C = np.array( 8 [[0, 1, 2, 3, 4], 9 [5, 6, 7, 8, 9], 10 [10, 11, 12, 13, 14], 11 [15, 16, 17, 18, 19]] 12) 13#print(f"X: shape={X.shape}", X, sep="\n") 14#print(f"Y: shape={Y.shape}", Y, sep="\n") 15#print(f"C: shape={C.shape}", C, sep="\n") 16 17fig, ax = plt.subplots(figsize=(5, 5)) 18ax.pcolormesh(X, Y, C,edgecolors="w",alpha=0.5) 19 20plt.show()
表示された図です。この中に数値を入力したいのですが可能でしょうか?
イメージはこのような図です。
よろしければ、ご教授ください。
回答1件
あなたの回答
tips
プレビュー