JEphem site
jephem API
Build classes

tig.maths
Class Matrix2

java.lang.Object
  |
  +--tig.maths.Matrix2

public class Matrix2
extends java.lang.Object

Simple representation of a 2 x 2 matrix containing double precision numbers.
Represented as 4 doubles.


Field Summary
 double m00
          Term of the matrix
 double m01
          Term of the matrix
 double m10
          Term of the matrix
 double m11
          Term of the matrix
 
Constructor Summary
Matrix2(double x00, double x01, double x10, double x11)
          Unique constructor.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m00

public double m00
Term of the matrix


m01

public double m01
Term of the matrix


m10

public double m10
Term of the matrix


m11

public double m11
Term of the matrix

Constructor Detail

Matrix2

public Matrix2(double x00,
               double x01,
               double x10,
               double x11)
Unique constructor.
Fills the instance variables mij from parameters xij.


JEphem site
jephem API
Build classes