public class Merge extends Object
For convenience a number of special routines (o12, o21, o22, o13, ...) are provided to merge the matrices in their argument list.
| Constructor and Description |
|---|
Merge() |
| Modifier and Type | Method and Description |
|---|---|
static Zmat |
o(Zmat[][] B)
Merges the matrices in an array of Zmats
|
static Zmat |
o12(Zmat B00,
Zmat B01)
Merges its arguments to create the Zmat
|
static Zmat |
o13(Zmat B00,
Zmat B01,
Zmat B02)
Merges its arguments to create the Zmat
|
static Zmat |
o21(Zmat B00,
Zmat B10)
Merges its arguments to create the Zmat
|
static Zmat |
o22(Zmat B00,
Zmat B01,
Zmat B10,
Zmat B11)
Merges its arguments to create the matrix
|
static Zmat |
o23(Zmat B00,
Zmat B01,
Zmat B02,
Zmat B10,
Zmat B11,
Zmat B12)
Merges its arguments to create the Zmat
|
static Zmat |
o31(Zmat B00,
Zmat B10,
Zmat B20)
Merges its arguments to create the Zmat
|
static Zmat |
o32(Zmat B00,
Zmat B01,
Zmat B10,
Zmat B11,
Zmat B20,
Zmat B21)
Merges its arguments to create the Zmat
|
static Zmat |
o33(Zmat B00,
Zmat B01,
Zmat B02,
Zmat B10,
Zmat B11,
Zmat B12,
Zmat B20,
Zmat B21,
Zmat B22)
Merges its arguments to create the Zmat
|
public static Zmat o(Zmat[][] B) throws JampackException
B[][] - The array of ZmatsJampackException - Thrown if there is a nonconformity.public static Zmat o12(Zmat B00, Zmat B01) throws JampackException
A = | B00 B01 |
Bij - The Zmats to be mergedJampackException - Thrown if there is a nonconformity.public static Zmat o21(Zmat B00, Zmat B10) throws JampackException
A = | B00 |
| B10 |
Bij - The Zmats to be mergedJampackException - Thrown if there is a nonconformity.public static Zmat o22(Zmat B00, Zmat B01, Zmat B10, Zmat B11) throws JampackException
A = | B00 B01|
| B10 B11|
Bij - The Zmats to be mergedJampackException - Thrown if there is a nonconformity.public static Zmat o13(Zmat B00, Zmat B01, Zmat B02) throws JampackException
A = | B00 B01 B02 |
Bij - The Zmats to be mergedJampackException - Thrown if there is a nonconformity.public static Zmat o23(Zmat B00, Zmat B01, Zmat B02, Zmat B10, Zmat B11, Zmat B12) throws JampackException
A = | B00 B01 B02 |
| B10 B11 B12 |
Bij - The Zmats to be mergedJampackException - Thown if there is a nonconformity.public static Zmat o31(Zmat B00, Zmat B10, Zmat B20) throws JampackException
A = | B00 |
| B10 |
| B20 |
Bij - The Zmats to be mergedJampackException - Thrown if there is a nonconformity.public static Zmat o32(Zmat B00, Zmat B01, Zmat B10, Zmat B11, Zmat B20, Zmat B21) throws JampackException
A = | B00 B01 |
| B10 B11 |
| B20 B21 |
Bij - The Zmats to be mergedJampackException - Thrown if there is a nonconformity.public static Zmat o33(Zmat B00, Zmat B01, Zmat B02, Zmat B10, Zmat B11, Zmat B12, Zmat B20, Zmat B21, Zmat B22) throws JampackException
A = | B00 B01 B02 |
| B10 B11 B12 |
| B20 B21 B22 |
Bij - The Zmats to be mergedJampackException - Thrown if there is a nonconformity.Copyright © 2015. All rights reserved.