Suppose I have a data set with 10 classes. Each class contains 3 points in 3D:
Class 1: (1,2,3),(4,5,6),(7,8,9)
Class 2: (2,3,4),(5,6,7),(8,9,10)
.
.
Class 10: (10,15,20),(10,11,19),(4,8,9)
How can I determine if class X belongs to to one of the classes above using Alglib LDA (or any other free LDA library)?
Example code will be appreciated.