我有以下代码:
matplotlib.pyplot.figure()
matplotlib.pyplot.imshow( myValues )
matplotlib.pyplot.colorbar()
matplotlib.pyplot.title( 'Values' )
matplotlib.pyplot.show()
它创建了一个非常默认的颜色图。myValues 在 [ -1.0, 1.0 ] 的范围内(以后可能会发生变化。我想将所有 0.0 的值都涂成白色。我该如何实现呢?
问候, 麦基