Is it possible to convert a heatmap to a Matrix ?

16 次查看(过去 30 天)
Hey all!
I have a for loop with 29k iterations, i want to store in each iteration a heatmap in a cell array. Now the problem arrises, that every time a new heatmap is created, the last heatmap got deleted and i am ending with 29k emtpy heatmaps that are deleted and only the last one is still available.
I want the same function as a heatmap(counting the apperance of value pairs) but store it as a double matrix. Is there a function which converts the Data of the heatmap into a matrix ? Or how can I stop deleting the heatmap when creating a new one ?
Thanks in advance !
  3 个评论
Fadi Al-kayid
Fadi Al-kayid 2021-1-8
Thanks for your respone, but i didn't get it.. How does this work or what diffirence will bring this ?
Kind Regards
Fadi
Walter Roberson
Walter Roberson 2021-1-8
Now the problem arrises, that every time a new heatmap is created, the last heatmap got deleted
Each iteration you can create a new figure or panel or tab to parent the heatmap into, so that the heatmap will not get deleted each time and all of them will be available.
Nominally this solves the problem you stated. It would not, however, solve the problem that 29k graphics objects would be rather slow.

请先登录,再进行评论。

回答(1 个)

Kelly Kearney
Kelly Kearney 2021-1-8
Unlike most Matlab plotting functions, heatmap is annoyingly heavy-handed. It really wants to be used as a quick browsing tool, with very little customization allowed.
You can extract the color data from it:
load patients
tbl = table(LastName,Age,Gender,SelfAssessedHealthStatus,...
Smoker,Weight,Location);
h = heatmap(tbl,'Smoker','SelfAssessedHealthStatus');
cdata = h.ColorData;
Alternatively, you may want to look some histogram functions (e.g. histcounts2) to calculate heatmap-like values without the plotting overhead.
  2 个评论
Fadi Al-kayid
Fadi Al-kayid 2021-1-8
First of all, thank you very much!
Do you know if its possible to extract the whole data out of the heatmap, for example i have a 11x11 grid and when i am extracting the data using h.ColorData it return a matrix only with the dimension in which the counts are bigger than zero ..
Kelly Kearney
Kelly Kearney 2021-1-8
Do you have a small example of what you're looking for? The XData, YData, and ColorData properties hold most of the info you'd need, I think, though it may vary based on your specific example.
Really, with 29000 iterations, some batch histogram calculations are probably going to be more efficient and flexible than trying to extract the data you need from a heatmap chart, but again, it depends on your exact use case.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Distribution Plots 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by