Computer Codes
MATLAB Code (My Profile @ The MathWorks File Exchange Website)
Java:    Fractal Drawing
       Draws fractal patterns by solving polynomial roots using Newton's method on the complex plane.

Polyroot.java (*.txt) -Main class that runs a Newton Method iteration in complex domain and plots the                                 number of iternations required for conversion.
Complex.java (*.txt)- Helper class for Polyroot.java from a slightly modified Complex class written by                                 Ian F. Darwin (2004).
ClrMap.java (*.txt) - Colomap class that maps ietration number with respective color.
C++:    Word Composition Estimation
SparSqrMat.h (*.txt) - Implements the class sparse square matrix, used for a Markov model of word                                   occurences in text.
writ_sim.cpp(*.txt) - Main class. For now, estimates the 2nd order probabilities of word occurences                                   given a sample text file.
test2.txt                  - Sample text file.
C++:    Complex Class
complex.h (*.txt) - Implements the class complex (for complex math).

C++:    Knap-Sack
greedy_alg.cpp (*.txt) - Main class. Solves the knap-sack probem using a greedy algorithm based on                                      the ratio between weights and cost.
bench_ucorr.txt - Sample data to use with the greedy_alg class.