Your preferences have been saved!
» Simulate a matrix. Provides method to travers vectors that compose - import java.util.Vector; /**  * Simulate a matrix. Provides method to travers vectors that compose the  * matrix.  *   * @author federico  */ public class Matrix {   private Vector<Integer>[] v = null;   private final int sizeDefault = 1000;... 15 Feb 12 » Inertia Matrix - //package jinngine.math; import java.io.Serializable; /**  * Copyright (c) 2008-2010 Morten Silcowitz.  *   * This file is part of the Jinngine physics library  *   * Jinngine is published under the GPL license, available at  * http://www.gnu.org/copyleft/gpl.html.  */... 15 Feb 12 » Various geometric transformations on matrix form - //package jinngine.math; import java.io.Serializable; /**  * Copyright (c) 2008-2010  Morten Silcowitz.  *  * This file is part of the Jinngine physics library  *  * Jinngine is published under the GPL license, available   * at http://www.gnu.org/copyleft/gpl.html.   */... 15 Feb 12 » 4 x 4 Matrix - //package jinngine.math; import java.io.Serializable; /**  * Copyright (c) 2008-2010  Morten Silcowitz.  *  * This file is part of the Jinngine physics library  *  * Jinngine is published under the GPL license, available   * at http://www.gnu.org/copyleft/gpl.html.   */... 15 Feb 12 » A 3x3 matrix implementation - //package jinngine.math; import java.io.Serializable; //3x3 matrix for optimized matrix ops /**  * A 3x3 matrix implementation  */ public class Matrix3 {   public double a11, a12, a13;   public double a21, a22, a23;   public double a31, a32, a33;... 15 Feb 12 » Vector extends Matrix - //package aima.core.util.math; import java.io.BufferedReader; import java.io.PrintWriter; import java.io.StreamTokenizer; import java.text.DecimalFormat; import java.text.DecimalFormatSymbols; import java.text.NumberFormat; import java.util.List; import java.util.Locale; /**... 15 Feb 12 » The Java Matrix Class provides the fundamental operations of numerical - import java.io.BufferedReader; import java.io.PrintWriter; import java.io.StreamTokenizer; import java.text.DecimalFormat; import java.text.DecimalFormatSymbols; import java.text.NumberFormat; import java.util.List; import java.util.Locale; /**  * Jama = Java Matrix class.... 15 Feb 12 » This class represents a lower (or upper) triangle matrix that - public class HalfIntMatrix{   /** the array holding the complete triangle matrix */   private final int[] matrix;   private final int size, initialValue;   /**    * Creates a new HalfIntMatrix that is an exact copy of the given template    *     * @param template    *            a HalfIntMatrix that should be copied    */... 15 Feb 12 » Rotations in a three-dimensional space - import java.io.Serializable; public class Rotation implements Serializable {   /** Build the identity rotation.    */   public Rotation() {     q0 = 1;     q1 = 0;     q2 = 0;     q3 = 0;   }... 15 Feb 12 » Implementation of a 4x4 matrix suited for use in a - public class Matrix4x4  {   private double[]  m_;  // of 16      /**    * Construct a 4x4 identity matrix.    */   public Matrix4x4()   {     initialize();... 15 Feb 12