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.
我想以double[50,50]类似的方式在 C# 中绘制我的数组 (),就像在 python 中所做的那样。
double[50,50]
import matplotlib.pyplot as plt import numpy as np X = np.random.random((100, 100)) # sample 2D array plt.imshow(X, cmap="gray") plt.show()
我怎样才能做到这一点?