special heatmap

Plot heatmaps of various shapes, triangular heatmaps, and add dendrograms and significance labels.

https://github.com/slandarer/MATLAB-special-heatmap

Ahora está siguiendo esta publicación

1 基础使用(Basic use)
1.1 非负矩阵(Draw positive heat map)
figure()
Data=rand(15,15);
SHM1=SHeatmap(Data,'Format','sq');
SHM1=SHM1.draw();
1.2 绘制有负数热图(Contains negative numbers)
figure()
Data=rand(15,15)-.5;
SHM2=SHeatmap(Data,'Format','sq');
SHM2=SHM2.draw();
1.6 绘制有文本热图(Draw heat map with texts)
使用 setText() 方法显示文字:
Use the setText() method to display text:
figure()
Data=rand(12,12)-.5;
Data([4,5,13])=nan;
SHM7=SHeatmap(Data,'Format','sq');
SHM7=SHM7.draw();
SHM7.setText();
2 各类型热图绘制(Preparation of various Format of heat maps)
  • sq : square (default) : 方形(默认)
  • pie : pie chart : 饼图
  • circ : circular : 圆形
  • oval : oval : 椭圆形
  • hex : hexagon :六边形
  • asq : auto-size square :自带调整大小的方形
  • acirc : auto-size circular :自带调整大小的圆形
More Demos can be seen in README.xls

Citar como

Zhaoxu Liu / slandarer (2026). special heatmap (https://github.com/slandarer/MATLAB-special-heatmap), GitHub. Recuperado .

Zhaoxu Liu / slandarer (2025). special heatmap (https://www.mathworks.com/matlabcentral/fileexchange/125520-special-heatmap), MATLAB Central File Exchange.

Información general

Compatibilidad con la versión de MATLAB

  • Compatible con cualquier versión

Compatibilidad con las plataformas

  • Windows
  • macOS
  • Linux

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión Action
3.1.3

Default Branch

3.1.2

See release notes for this release on GitHub: https://github.com/slandarer/matlab-special-heatmap/releases/tag/v3.1.2

3.1.0

See release notes for this release on GitHub: https://github.com/slandarer/matlab-special-heatmap/releases/tag/v3.1.0

3.0.4

Comment update.

3.0.3

Comment Update

3.0.2

Fixed a bug where the 'Color' property of class 'matlab.graphics.layout.TiledChartLayout' was not recognized.

3.0.1

Improve the readme file

3.0.0

+ 更多形状(More shapes)
+ 使用不同colormap(Draw heat maps with two colormaps)
+ 显示显著性(Displaying significance)

2.1.1

support setting text format

2.1.0

More Description

2.0.0

可设置为上三角或下三角(Set to upper triangle or lower triangle)
增添较多示例(Give more demos)
+ 设置为上三角或下三角(Set to upper triangle or lower triangle)
+ 合并两个三角热图(Merge two triangle heat maps)
+ 带树状图热图(Heatmap with dendrogram)
+ 带分组热图(Grouping heat map)
+ ... ...

1.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.