Re: [PD] ordering arrays based in similarity

2012-03-05 Thread William Brent
If you do end up treating each of your messages like a vector, the [choice] extern is good for this kind of thing. But you have to implement the weighting on your own before sending anything to it. On Sun, Mar 4, 2012 at 7:28 PM, Mathieu Bouchard ma...@artengine.ca wrote: Le 2012-03-05 à

Re: [PD] ordering arrays based in similarity

2012-03-05 Thread Mathieu Bouchard
Le 2012-03-05 à 09:09:00, William Brent a écrit : If you do end up treating each of your messages like a vector, the [choice] extern is good for this kind of thing. But you have to implement the weighting on your own before sending anything to it. Vector is a quite polysemic word... it's

[PD] ordering arrays based in similarity

2012-03-04 Thread ronni montoya
Hi , i have a groups of messages each one containing an array, or a groups of numbers in this way: [ 2, 5, 1, 3, 5 ( [ 2, 1, 5, 9, 1 ( [ 5, 3, 1, 8, 5 ( [ 7, 7, 3, 8, 2 ( ... and so on How can i order each one of these arrays (messages) based in its similarities? i need that the most

Re: [PD] ordering arrays based in similarity

2012-03-04 Thread Andy Farnell
Probably the simplest first approach, https://en.wikipedia.org/wiki/Euclidean_distance But then, for music (I'm making a guess here), each dimension is not equally weighted, so if your first column represents the root key then you might want to give that more clout. There are more elaborate _

Re: [PD] ordering arrays based in similarity

2012-03-04 Thread Mathieu Bouchard
Le 2012-03-05 à 01:37:00, ronni montoya a écrit : How can i order each one of these arrays (messages) based in its similarities? i need that the most similar ones can be neighbours, so i can trigger them in a ordered way how can i achieve this? Similarity is not just one concept, it's a wide