All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Jampack.Eye

java.lang.Object
   |
   +----Jampack.Eye

public class Eye
extends Object
Eye generates a matrix whose diagonal elements are one and whose off diagonal elements are zero.


Constructor Index

 o Eye()

Method Index

 o o(int)
Generates an identity matrix of order n.
 o o(int, int)
Generates an mxn matrix whose diagonal elements are one and whose off diagonal elements are zero.

Constructors

 o Eye
 public Eye()

Methods

 o o
 public static Zmat o(int n)
Generates an identity matrix of order n.

Parameters:
n - The order of the matrx
 o o
 public static Zmat o(int m,
                      int n)
Generates an mxn matrix whose diagonal elements are one and whose off diagonal elements are zero.

Parameters:
m - The number of rows in the matrix
n - The number of columns in the matrix

All Packages  Class Hierarchy  This Package  Previous  Next  Index