Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to find a similarity measurement between two arrays of data. You can call similarity measurement whatever you want, difference, correlation or whatever.

For example:

 1, 2, 3, 4, 5 < Series 1
 2, 3, 4, 5, 6 < Series 2

Should be far more similar to each other than these 2 series:

 1, 2, 3, 4, 5 < Series 1
 1, 1, 5, 8, 7 < Series 2

Any suggestions?

Is there a source code available for it?

share|improve this question
This has nothing to do with C++ and everything to do with math. – Nikolai N Fetissov Dec 3 '11 at 21:17
Maybe better on Stats.SE. – dmckee Dec 3 '11 at 21:17
1  
EBAG: this is better than your last question, but still hard to answer precisely. Maybe try looking here. The problem is "similarity" is a human concept, not a technical one. To choose an algorithm you need to be more specific about the data, the use of the similarity algorithm, and your expectations. – tenfour Dec 3 '11 at 21:20
@NikolaiNFetissov: I think he wants answer in c++ – Dani Dec 3 '11 at 21:25

2 Answers

up vote 1 down vote accepted

You can 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.

share|improve this answer

If your definition of similarity is how much same elements there are you can use set intersection:

std::multiset<int> Series1 = std::multiset({ 1, 2, 3, 4, 5 });
std::multiset<int> Series2 = std::multiset({ 2, 3, 4, 5, 6 });
std::multiset<int> Intersection;

std::set_intersection(Series1.begin(), Series1.end(),
                      Series2.begin(), Series2.end(),
                      std::back_inserter(Intersection));

int similarity = Intersection.size(); // = 4
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.