我想在matlab中使用自定义距离的链接函数。
我的距离函数的形式是:
Distance = pdist(matrix,@mydistance);
所以给定一个
matrix = rand(132,18)
距离将是一个向量[1x8646];
D_matrix = squareform(Distance,'tomatrix');
是一个矩阵132x132
,包含 te 行之间的所有成对距离matrix
我怎样才能mydistance
嵌入linkage
?