如何在Matlab的Pdist相关中着色事件?

时间:2016-03-02 14:23:36

标签: matlab data-visualization

plot(mat2gray(pdist(data, 'correlation')));

的输出

enter image description here

我看到有3-5种趋势,我想更好地想象。 我认为plot可能不是最佳选择。 它的imshow(squareform(pdist(data, 'correlation')))(相当于imshow(squareform(pdist(data, 'correlation'), 'tomatrix')))基于Dan的answer以下内容。 具有标准化pdist值的图像,即imshow(squareform( mat2gray(pdist(data, 'correlation')), 'tomatrix') ); colormap('parula');

enter image description here

但是,我在解释图片时遇到了一些困难。 如果你考虑像特征值那样的暗处,似乎有三个特征值。 我应该把这些放在轴上?

如何更好地可视化dist相关的输出?

1 个答案:

答案 0 :(得分:2)

怎么样

imshow(squareform(pdist(data, 'correlation')))

您可能需要在调用imshow之前按摩结果,使其范围为01,或者为uint8类型,范围为{{1转到0