基于2x2矩阵条件的颜色代码MatLab直方图

时间:2017-04-20 14:22:35

标签: matlab matrix signals

如果我有2x2矩阵,例如

1 2
4 7

我想基于对角线应该是绿色的条件绘制直方图,除了对角线以外的所有其他内容都应该是红色的,我该如何在Matlab中做到这一点。

我尝试将2x2矩阵分成两个不同的向量,分别代表对角线和其他向量(对角线除外),但是当我这样做时:

hist(diagonals)
hist(others)

它并没有真正起作用,似乎只是随机地将事物颜色编码成一个直方图(虽然我只想要一个直方图。)我该如何正确地做到这一点?

1 个答案:

答案 0 :(得分:0)

找到问题的解决方案,使用histogram(diagonals, 'FaceColor', 'g') hold on histogram(others, 'FaceColor', 'r') hold on 修复此问题

 // Standard vertical scroll puck
{
    "class": "puck_control",
    "layer0.tint":[44,62,78],
    "layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
    "layer0.inner_margin": 0,
    "content_margin": [3,0],
    "blur": false
},