How to set the matlab heatmap properties to all heatmaps without repetition?

조회 수: 1 (최근 30일)
h = heatmap(folder_name_cells,folder_name_cells,Mat_Linear,'ColorScaling','log','MissingDataColor','1.00,1.00,1.00',...
'GridVisible','off');
colormap(flipud(colormap('summer')));
I need to plot several heatmaps. How to set above properties (like colormap, cloring scale, ...) once with no need to repeat with each individual heatmap?

답변 (1개)

Walter Roberson
Walter Roberson 2020년 4월 10일
You can copyobj(h, target_axes) to create a copy of h with all properties intact. Then you would set about 15 or so properties of the cloned object to adapt it to the data for the second heatmap. You could do that with a single call to set(), if you were sufficiently familiar with the meanings of the properties.
... I just counted, and my visual estimate of 15 properties was very close!
But, hey, setting "only" 15 properties manually is better than setting 4 properties, right?
Have you considered the possibility of just toasing the repeated option into a cell array, like
opt = {'ColorScaling','log','MissingDataColor','1.00,1.00,1.00',...
'GridVisible','off'};
and then using
h = heatmap(folder_name_cells,folder_name_cells,Mat_Linear, opt{:});
This does not meet your stated goal of not needing to repeat the properties for each heatmap, but I suspect that it would be sufficient for your purpose.

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by