我正在尝试计算两个矩阵之间的距离。例如。它是这样的。
矩阵-M1
1 2
3 4
5 6
7 8
9 0
矩阵-M2
1 1
2 2
距离矩阵(d1 是 M1 第 1 行和 M2 第 1 行之间的距离,d2 是 M1 第 1 行和 M2 第 2 行之间的距离。)
d1 d2
d3 d4
d5 d6
d7 d8
d9 d10
我尝试了下面的代码但不起作用。请帮助我。
#include<stdio.h>
#include<math.h>
int calcdist(int ,int ,int ,int);
int main()
{
int points[5][2];
int centroid[2][2];
int distance[5][2];
int i,j,k;
printf("Enter the points:\n");
for(i=0;i<5;i++)
for(j=0;j<2;j++)
scanf("%d",&points[i][j]);
printf("Displaying the points.\n");
for(i=0;i<5;i++)
{
for(j=0;j<2;j++)
printf("%d\t",points[i][j]);
printf("\n");
}
printf("Enter the centroids:\n");
for(i=0;i<2;i++)
for(j=0;j<2;j++)
scanf("%d",¢roid[i][j]);
printf("Displaying the centroids.\n");
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
printf("%d\t",centroid[i][j]);
printf("\n");
}
for(i=0;i<5;i++)
{
k=0;
for(j=0;j<2;j++)
{
distance[i][j]=calcdist(points[i][j],points[i][j+1],centroid[k][j],centroid[k][j+1]);
}
}
printf("The distance between the points and centroids are as below.\n");
for(i=0;i<5;i++)
{
for(j=0;j<2;j++)
{
printf("%d\t",distance[i][j]);
}
printf("\n");
}
return 0;
}
int calcdist(int a,int b,int c,int d)
{
int dist;
dist=sqrt(pow((c-a),2)+pow((d-b),2));
return dist;
}