All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Jampack.Plus

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

public class Plus
extends Object
Plus Computes the sum of two matrices.


Constructor Index

 o Plus()

Method Index

 o o(Zdiagmat, Zdiagmat)
Computes the sum of a Zdiagmat and a Zdiagmat.
 o o(Zdiagmat, Zmat)
Computes the sum of a Zdiagmat and a Zmat.
 o o(Zmat, Zdiagmat)
Computes the sum of a Zmat and a Zdiagmat.
 o o(Zmat, Zmat)
Computes the sum of two Zmats

Constructors

 o Plus
 public Plus()

Methods

 o o
 public static Zmat o(Zmat A,
                      Zmat B) throws JampackException
Computes the sum of two Zmats

Parameters:
A - The first Zmat
B - The second Zmat
Returns:
A + B
Throws: JampackException
Thrown for nonconformity.
 o o
 public static Zmat o(Zmat A,
                      Zdiagmat D) throws JampackException
Computes the sum of a Zmat and a Zdiagmat.

Parameters:
A - The Zmat
D - The Zdiagmat
Returns:
A + D
Throws: JampackException
Thrown for nonconformity.
 o o
 public static Zmat o(Zdiagmat D,
                      Zmat A) throws JampackException
Computes the sum of a Zdiagmat and a Zmat.

Parameters:
D - The Zdiagmat
A - The Zmat
Returns:
D + A
Throws: JampackException
Thrown for nonconformity.
 o o
 public static Zdiagmat o(Zdiagmat D1,
                          Zdiagmat D2) throws JampackException
Computes the sum of a Zdiagmat and a Zdiagmat.

Parameters:
D1 - The first Zdiagmat
D2 - The second Zdiagmat
Returns:
D1 + D2
Throws: JampackException
Thrown for nonconformity.

All Packages  Class Hierarchy  This Package  Previous  Next  Index