I have small matrix of +-100 points/values, results of test and their distances (0-10, 10 is the closest) to each other: http://vis.arcs.cz.
I would like to visualize it in 2D to quickly find a groups of close values. So I need to process this matrix and get the coordinates of points in 2D.
The way is propably multidimensional scaling but I wasnt able to find an algorithm, library or extension nor use the math formulas into PHP code.
Im googling last two days and the closest results of it is http://www.php.net/manual/en/lapack.leastsquaresbysvd.php - ? (cant share more links as novice)
I'll be grateful for any solution applicable in php project (compiled MathLab code in C++...).