How to set every Data Cursor in each column in this Figure automatically?

조회 수: 3 (최근 30일)
a = 1 : 10
b = 1.001 : 10.001
c = 1.002 : 10.002
a = [a;b;c];
a = a (:)';
cg = clustergram(a, 'Cluster', 'row', 'DisplayRange', ceil(max(abs(a))), 'ColumnPDist', 'chebychev', 'Linkage', 'complete', 'Colormap',colormap('jet'), 'DisplayRatio', 1/9)
plot(cg)
Then, I need click every column and set a Data Cursor. It's too boring,
Is there a way to set every Data Cursor in each column in a Figure automatically, not manually?
Thank you in advance!

채택된 답변

Mario Malic
Mario Malic 2020년 10월 29일
편집: Mario Malic 2020년 11월 4일
Edit: Answer updated (was in comments), this code is tested on R2020b and it works. OP wanted code that works with 2018b, for which this doesn't work.
clear
clc;
close all
a = 1 : 10;
b = 1.001 : 10.001;
c = 1.002 : 10.002;
a = [a;b;c];
a = a (:)';
clustergram(a, 'Cluster', 'row', 'DisplayRange', ceil(max(abs(a))), 'ColumnPDist', 'chebychev', 'Linkage', 'complete', 'Colormap','jet', 'DisplayRatio', 1/9);
cgfig = findall(0,'type','figure', 'Tag', 'Clustergram');
cg_im = findall(cgfig, 'type', 'image');
for ii = 2 : 3 : length(a)
datatip(cg_im, 'DataIndex', ii);
end
Edited once again according to Adam's suggestion, now it works properly.
Thanks!
  댓글 수: 9
Adam Danz
Adam Danz 2020년 11월 4일
편집: Adam Danz 2020년 11월 4일
+1 Great find applying the datatip to the image object.
Just in case more than 1 image object exists you can get the clustergram figure handle and then the image handle.
cgfig = findall(0,'type','figure', 'Tag', 'Clustergram');
cg_im = findall(cgfig, 'type', 'image');
"I don't know why the additional empty figure keeps getting opened on clustergram"
The colormap is being set by calling the colormap function,
cg = clustergram(. . ., 'Colormap', colormap('jet'), . . .)
When the fig or axis handle is not provided in colormap(__) it uses gcf. However, figure's HandleVisibility in the clustergram is set to 'off' by default. Since gcf() doesn't have access to an existing figure handle, it creates one.
To avoid this, set the colormap as,
cg = clustergram(. . ., 'Colormap', 'jet', . . .)
or
cg = clustergram(. . ., 'Colormap', jet(n), . . .)
Adam Danz
Adam Danz 2020년 11월 4일
편집: Adam Danz 2020년 11월 4일
For anyone looking for a solution where datatip is not supported (prior to r2019b), see Method 5 in this answer.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Expression Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by