Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 972 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 972 Bytes

K-Means

A matlab implementation for the unsupervised learning algorithm ( K-Means).

The program implements the K-Mean algorithm on three different datasets. For further information about the topic, you can take a look at topic.pdf.

You can run the program by calling the KMean function with one of the datasets and the value K.

K = 5
KMean(importdata('path_to_dataset.txt'),K)

License

Copyright © 2018 Muazzam Ali

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.