An open API service indexing awesome lists of open source software.

https://github.com/klimentlagrangiewicz/k-medoids

Implementation of k-medoids algorithm in C (standard C89/C90)
https://github.com/klimentlagrangiewicz/k-medoids

c c90 clustering k-medoids k-medoids-clustering

Last synced: 5 months ago
JSON representation

Implementation of k-medoids algorithm in C (standard C89/C90)

Awesome Lists containing this project

README

          

# k-medoids
Implementation of k-medoids algorithm in C programming language
## Example of usage
Cloning project and changing current directory:
```
git clone https://github.com/KlimentLagrangiewicz/k-medoids
cd k-medoids
```
Building from source (Linux):
```
make
```
Building from source (Windows):
```
make windows
```
If building was ok, you can find executable file in `bin` subdirectory.
Run the program:
```
./bin/k-medoids ./datasets/iris/data.txt 150 4 3 ./datasets/iris/new_result.txt ./datasets/iris/res.txt

```