需要在mathematica中突出显示数组图中的某个元素

时间:2018-06-13 17:05:57

标签: arrays plot wolfram-mathematica

使用列表构建阵列图。我想用红色指针标记最大强度元素。有可能吗?

1 个答案:

答案 0 :(得分:1)

这就是你要找的东西

m = {{1, 0, 0, 0.3}, {2, 7, 0, 0.3}, {1, 0, 1, 0.7}};
ArrayPlot[m /. Last[Sort[Flatten[m]]] -> Red]

enter image description here