使用matplotlib在ipython中绘制矩阵的函数

时间:2015-04-22 20:19:53

标签: python matplotlib ipython

我创建了一个矩阵:

s1=np.random.randn(1000,1000)
v1=la.eigvals(s1)
matrix1=np.matrix(v1)

我想在ipython中绘制矩阵。

我应该使用哪种matplotlib函数?

1 个答案:

答案 0 :(得分:1)

“绘制”矩阵的一个非常简单的例子:

import numpy as np
import pylab as plt

S  = np.random.randn(100,100)

# Make symmetric so everything is real
S += S.T
W,V = np.linalg.eigh(S)

import pylab as plt
plt.imshow(V,interpolation="none")
plt.show()

enter image description here