CirHeatmap

バージョン 1.71 (329 KB) 作成者: Joshua Welsh
Grouped Circular Heatmap Function
ダウンロード: 367
更新 2020/10/6

A function that allows plotting of a data array in a circular heatmap.
Optionally spatially separating groups can be achieved by using a cell array with a data array of each group per cell.
Allows input for the cmocean toolbox colormaps on the file exchange.

Example:
close all
clear

%% Online examples

DataX{1} = rand(100, 10); % Create dataset of 3 groups
DataX{2} = -rand(100, 5);
DataX{3} = rand(100, 7);

x = 1:1:100;
Labels = [];

for i = 1:numel(x)
Labels{i} = ['Label ', num2str(x(i))]; % Create labels for each column
end

Groups = {'Pre', 'During','After'}; % Create labels for each group

[Fig] = CirHeatmap(DataX', 'GroupLabels', Groups,'OuterLabels', Labels, 'CircType', 'half','InnerSpacerSize',0.5);

引用

Joshua Welsh (2024). CirHeatmap (https://github.com/joadwe/cirheatmap/releases/tag/v1.71), GitHub. 取得済み .

MATLAB リリースの互換性
作成: R2018a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersColormaps についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.71

See release notes for this release on GitHub: https://github.com/joadwe/cirheatmap/releases/tag/v1.71

1.7

- EdgeColor is transparent by default and can be customised.
- InnerSpaceSize rescaled

1.6.0.0

Bug fix

1.5.0.0

Description update

1.4.0.0

Updated default colormap and input for colormap specification
Updated error messages
Added CirHeatmap example script

1.3.0.0

Removed unnecessary file paths.

1.2.0.0

Example provided

1.1.0.0

Screenshot updated

1.0.0.0

この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。
この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。