计算两个数组之间相关性的有效算法

发布于 2024-12-19 07:12:27 字数 210 浏览 2 评论 0原文

我正在寻找一种算法来计算两个双精度数组之间的相关性。

算法的名称是什么,如果可能的话,我需要 C++ 源代码。

相关性是指数组中数据的相似度...

例如:

Array1: 1 2 3 Array2: 2 3 5

应该比这 2 个数组具有更高的相似性度量:

Array1: 1 2 3 数组2:9 8 15

I'm looking for an algorithm to calculate correlation between two array of doubles.

What are the names of the algorithms and I need c++ source code if it's possible.

And by correlation I mean the similarity of data in the array...

for example:

Array1: 1 2 3
Array2: 2 3 5

should have a higher similarity measure than these 2 arrays:

Array1: 1 2 3
Array2: 9 8 15

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情丝乱 2024-12-26 07:12:27

您需要计算样本皮尔逊积矩相关系数:“上述公式提出了一种用于计算样本相关性的便捷单通道算法”。编写一个循环来计算 sum(xi)、sum(yi)、sum(xi^2)、sum(yi^2) 和 sum(xi*yi)。然后将这些总和代入公式中。

You need to calculate the sample Pearson product-moment correlation coefficient: "The above formula suggests a convenient single-pass algorithm for calculating sample correlations". Write a loop to calculate sum(xi), sum(yi), sum(xi^2), sum(yi^2), and sum(xi*yi). Then insert these sums into the formula.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文