public class Matrix_xy
extends java.lang.Object
implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
double |
xx |
double |
xy |
double |
yx |
double |
yy |
| Constructor and Description |
|---|
Matrix_xy()
Default constructor.
|
Matrix_xy(double x)
Constructor.
|
Matrix_xy(double a,
double b,
double c,
double d)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Convert the obj to a string.
|
public Matrix_xy()
public Matrix_xy(double x)
x - obj.xx = x; obj.xy = 0.0; obj.yx = 0.0; obj.yy = x;public Matrix_xy(double a,
double b,
double c,
double d)
x - obj.xx = a; obj.xy = b; obj.yx = c; obj.yy = d;