Update Home authored by Dean Samuel Schmitz's avatar Dean Samuel Schmitz
...@@ -23,6 +23,10 @@ After that you can use each Method by loading their module with SICStus e.g. ...@@ -23,6 +23,10 @@ After that you can use each Method by loading their module with SICStus e.g.
```prolog ```prolog
:- use_module('path/to/.../src/methods/dbscan/dbscan.pl'). :- use_module('path/to/.../src/methods/dbscan/dbscan.pl').
%% usage example
TrainData = [5.1,3.5,1.4, 4.9,3.0,1.4, 4.7,3.2,1.3, 4.6,3.1,1.5],
dbscan(1.0, 1, 0, ordered, kd, TrainData, 3, AssignList, CentroidsList, _).
``` ```
#### How to edit the project: #### How to edit the project:
... ...
......