| Constructor and Description |
|---|
Matrix(int height, int width)
|
| Modifier and Type | Method and Description |
|---|---|
Matrix |
add(Matrix
|
double |
determinant()
|
Dimension |
getDimension()
|
int |
getHeight()
|
static Matrix |
getIdentity(int size)
|
double |
getValue(int x, int y)
|
int |
getWidth()
|
void |
initRandom(Random
|
Matrix |
invert()
|
boolean |
isScalar()
|
boolean |
isVector()
|
Matrix |
multiply(double lambda)
|
Matrix |
multiplyFromRight(Matrix
|
void |
setValue(int x, int y, double v)
|
Matrix |
solve(Vector
|
Matrix |
subtract(Matrix
|
double |
toScalar()
|
String |
toString()
|
Vector |
toVector()
|
Matrix |
transponate()
|
public int getWidth()
public int getHeight()
public void setValue(int x,
int y,
double v)public double getValue(int x,
int y)public Matrixtransponate()
public Matrixmultiply(double lambda)
public boolean isScalar()
public boolean isVector()
public double toScalar()
public VectortoVector()
public DimensiongetDimension()
public StringtoString()
public void initRandom(Randomrandom, int maxValue)
public static MatrixgetIdentity(int size)
public Matrixinvert()
public double determinant()