show a digit matrix with segmentation line
조회 수: 1 (최근 30일)
이전 댓글 표시
답변 (1개)
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
Benjamin Großmann
2021년 5월 4일
You can use patch() with properties 'FaceColor' and 'EdgeColor' to plot colored surfaces with black line boundaries.
참고 항목
카테고리
Help Center 및 File Exchange에서 Colormaps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!