Tagged Questions
1
vote
5answers
615 views
Compare lots of texts (clustering) with a matrix
I have the following PHP function to calculate the relation between to texts:
function check($terms_in_article1, $terms_in_article2) {
$length1 = count($terms_in_article1); // number of words
...
0
votes
1answer
212 views
Compare character of text files in php
Suppose I have two text files.
The first one, called reference.txt has the following content:
dog goat cat
The second one, called compare.txt has the following content:
cow goat cockroach
I ...