index.html 253 B

123456789101112131415
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <script src="browser/skmeans.js"></script>
  5. </head>
  6. <body>
  7. <script>
  8. var data = [1,12,13,4,25,21,22,3,14,5,11,2,23,24,15];
  9. var res = skmeans(data,3);
  10. console.log(data);
  11. console.log(res);
  12. </script>
  13. </body>
  14. </html>