Archive | Java algorithms RSS feed for this section

Normalization

Normalization is any process that makes something more normal.

/**
* @param point1 first point
* @param point2 second point
* @return the normalization Euclidean distance of two points
*/
public [...]

Read full storyComments { 0 }
Euclidean distance

Euclidean distance

In mathematics, the Euclidean distance or Euclidean metric is the “ordinary” distance between two points that one would measure with a ruler, and is given by the Pythagorean formula.
/**
* @param point1 first point
* @param point2 second [...]

Read full storyComments { 0 }

Gaussian distribution

The normal distribution or Gaussian distribution is a continuous probability distribution that often gives a good description of data that cluster around the mean.

/**
* The aim of this static method is to implememnt the function of Gaussian distribution
* [...]

Read full storyComments { 0 }

Gaussian elimination

In linear algebra, Gaussian elimination is an algorithm  for solving systems of linear equations, finding the rank of a matrix, and calculating the inverse of an invertible square matrix.
Gauss-Jordan Elimination is a variant of Gaussian Elimination.

package org.javaresources.math.matrix;
/**
* Created by IntelliJ IDEA.
* User: glen
* Date: 2010-3-29
* Time: 20:10:28
*
*/
public class MatrixUtil [...]

Read full storyComments { 0 }