Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/wildart/lmclus

Linear Manifold Clustering algorithm
https://github.com/wildart/lmclus

Last synced: 20 days ago
JSON representation

Linear Manifold Clustering algorithm

Awesome Lists containing this project

README

        

LMCLUS
======

LMCLUS is a linear manifold clustering algorithm, developed by Rave Harpaz.
Current repository contains LMCLUS C++ library and R extensions.

Installation
============

Clone this repository

$ git clone https://github.com/wildart/lmclus.git

For building R extensions package, run following command:

$ R CMD INSTALL lmclus

For building LMCLUS as shared library, CMake (www.cmake.org) need to be installed. Build from the command line:

$ cd lmclus
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ..
$ make
$ make test

Dependencies
------------

* gcc (>= 4.7.2)
* R (>= 2.15.0) or BLAS (or MKL optional)

Licence
=======
Licensed under the LGPL, Version 3.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.gnu.org/copyleft/lesser.html

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.