This directory contains the Genetic algorIthm Optimization Toolbox for
Matlab
To use this, if you are local to NCSU and have AFS access to this
directory, simply extend the matlab path using the following command.
You can also place this command in a file called startup.m. Everytime
you start Matlab in the directory containing this file, the path will
always be extended.
This directory contains code implementing the K-means algorIthm. Source code
may be found in KMEANS.CPP. Sample data isfound in KM2.DAT. The KMEANS
program accepts input consisting of vectors and calculates the given
number of cluster centers using the K-means algorIthm. Output is
directed to the screen.
This code implements the shortest path algorIthm via the simple scheme and fibonacci heap data structure. It has 3 kinds of testing data input method : random input by computer, reading from the file, reading from the key board.