我正在使用matlab中的函数链接。 如何仅绘制第一个层次结构?
DSIM_vec = [0.2428 0.0829 0.1008 0.2348 0.1681 0.0982]
Z = linkage (DSIM_vec,'average')
% In this case cluster [1 3] shouldn't be grouped with the element 4.
dendrogram(Z)
T = cluster(Z,....);
我希望T只包含第一个层次结构集...
T = [2 1 2 3]
将是正确答案