show a digit matrix with segmentation line

3 次查看(过去 30 天)
HG
HG 2021-4-30
编辑: HG 2021-5-18
.

回答(1 个)

Benjamin Großmann
Benjamin Großmann 2021-4-30
编辑:Benjamin Großmann 2021-4-30
matrix = [ 1 1 1 1 2 2 2 2;
1 1 1 2 2 2 2 2;
3 3 3 3 3 2 2 2;
3 3 3 3 3 3 3 3];
heatmap(matrix, 'Colormap', [1 0 0; 0 0 1; 0 1 0]) % <-- EDIT: colormap definition in heatmap function call changed
colorbar('off')
  2 个评论
HG
HG 2021-5-4
I want to show a matrix like this photo with black line boundaries.
how can I do this ?
Benjamin Großmann
You can use patch() with properties 'FaceColor' and 'EdgeColor' to plot colored surfaces with black line boundaries.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Colormaps 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by