MATLAB欧式距离的代码优化。

9 views (last 30 days)
华纳公司注册账号【987779.tv】
Answered: 埃博拉酱 on 23 Nov 2024
point = [1 2 3 4 5 6,,,,,n;2 4 3 5 ,,,,,n;.......;128 ,,,,,, ];(point是一个非常大的矩阵:128*n)
dis = [];
tem = [];
for i = 1:length(point)-1
for j = i+1:length(point)
distemp = pdist([alldesc(:,i)';alldesc(:,j)']);
tem = [i j distemp];
dis = [dis;tem];
end
end
简单描述就是:计算矩阵的每一列与其他列的pdist,然后保存数据,可是当point非常大的时候,计算就非常慢,所以想知道有没有更高效的写法

Answers (1)

埃博拉酱
埃博拉酱 on 23 Nov 2024
[dis(:,1),dis(:,2)]=find(tril(true(width(alldesc)),-1));
dis(:,3)=pdist(alldesc.');

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!