我有一个浮动列表,范围从 0.01 到 1.0。我将它们分配给矩阵上的特定点。在我将它们分配给一个点的那一刻,它们覆盖了整个色谱 1.0,从黑色到白色为 0。我怎样才能使它只覆盖绿色和红色。
for x, y in arr_bool3:
zeros_and_ones[x, y] = confindencenumbers[count]##set so binary matrix knows where to plot
count=count+1
ax.imshow((zeros_and_ones), cmap=plt.cm.spectral_r, interpolation='none') ##Draw matrix
arr_bool3 是坐标列表,confindencenumbers 是浮点数列表