public class HansenUtilities extends Object
| Modifier and Type | Field and Description |
|---|---|
static PolynomialFunction |
ONE
1 represented as a polynomial.
|
static PolynomialFunction |
ZERO
0 represented as a polynomial.
|
| Modifier and Type | Method and Description |
|---|---|
static PolynomialFunctionMatrix |
buildIdentityMatrix2()
Build the identity matrix of order 2.
|
static PolynomialFunctionMatrix |
buildIdentityMatrix4()
Build the identity matrix of order 4.
|
static PolynomialFunctionMatrix |
buildZeroMatrix2()
Build the empty matrix of order 2.
|
static PolynomialFunctionMatrix |
buildZeroMatrix4()
Build the empty matrix of order 4.
|
public static final PolynomialFunction ONE
public static final PolynomialFunction ZERO
public static final PolynomialFunctionMatrix buildIdentityMatrix2()
/ 1 0 \
I₂ = | |
\ 0 1 /
public static final PolynomialFunctionMatrix buildZeroMatrix2()
/ 0 0 \
E₂ = | |
\ 0 0 /
public static final PolynomialFunctionMatrix buildIdentityMatrix4()
/ 1 0 0 0 \
| |
| 0 1 0 0 |
I₄ = | |
| 0 0 1 0 |
| |
\ 0 0 0 1 /
public static final PolynomialFunctionMatrix buildZeroMatrix4()
/ 0 0 0 0 \
| |
| 0 0 0 0 |
E₄ = | |
| 0 0 0 0 |
| |
\ 0 0 0 0 /
Copyright © 2002-2016 CS Systèmes d'information. All rights reserved.