Info
此问题已关闭。 请重新打开它进行编辑或回答。
Labelling dendrogram has issue
1 次查看(过去 30 天)
显示 更早的评论
Iam trying to label a dendogram, but iam getting confused out put :
rng default; % For reproducibility
X1= [1 1.5 5 3 4 3];
X2=[ 1 1.5 5 4 4 3.5]
X=[X1;X2]
X=X';
Y = pdist(X)
squareform(Y)
tree = linkage(Y)
[H,T,outperm]=dendrogram(tree);
set(gca,'TickDir','out','TickLength',[.002 0],'XTickLabel',['a', 'b','c','d','e','f']);
any suggestion please ?
can we produce a plot for the HC as figure 1 ??
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!