4x4 Karnaugh Map Minimizer v1.0
It creates the Karnaugh map of a function and calculates the minimum expression using the McCluskey algorithm. This program is also useful for people who want screen shots of Karnough maps. to run just extract the zip file to a folder and type: java -jar Karnaugh.jar
Age Calculator Demo in Java v1.0
A simple program that calculates in years, months, and, days the number of days that a person has lived for since his/her date of birth. Most age calculators that I found online were all wrong so I thought I'd create one of my own. It has an agecalculator object that can basically calculate the age...
Calculate Distance and Radius in Java
This Java function calculates the distance between two locations by using latitude and longitude from ZIP code, postal code or postcode. The result is available in miles, kilometers or nautical miles based on great circle distance calculation.
Console Based Java Calculator
This is a small Console Based Java Calculator that can add, subtract , divide and multiply two numbers. Find the square root of a number, cube of a number, nth Power of a number. It is very for the begnners of Java.
DateDiff Utility in Java 1.0
This utility can be used to determine date difference between passed 2 java dates (java.util.Calendar). The difference can be determined as (X year, X month and X days) or (X total days). It does not consider the hour/minute/second fields of the passed date. Main method of the class explains the...
JbcParser 3.3
JbcParser is a mathematical expression parser for Java. It parses and evaluates expressions given as strings at runtime. Comes with predefined math functions. Users can define their own functions and variables. Component features include: Easy to use component API. Comes with predefined functions...
Marth Expression Parser in java 1.2-ish
A mathematical expression parser with some built in math functions and constants (pi and e). source code and help included. made by strongheart.
Number System Conversion v.0.1
This is a modification from another source. Capable of converting octal to decimal. Floating point decimal to binary or vice versa. If someone out there is modifying it even better, please do share it too! Thanks!
Simple Java Calculator 1.02.12
This is a simple calculator in Java, that I created for my school in BlueJ environment. It is a must for begginers who want to learn Java.
Simulated Annealing Demonstration 1.0
This is a Java application that demonstrates the Simulated Annealing algorithm with an attack on the "traveling salesman" problem. What is simulated annealing? Simulated annealing is a technique, which was developed to help solve large combinatorial optimization problems. It is based on pr...
Standard Descriptive Statistics for Java
This class contains simple descriptive statistics for Java and contains only static methods. No instances of the class are needed. This class will be expanded as I have the time and interest. This class throws all exceptions encountered. The number of elements in the passed arrays of doubles mus...
VectorADT v1.0
This program simulates basic vector operations. addition subtraction , dot product are a few of the commands that can be run. easy coding and a lot of comments so that you follow and understand it :)