public class Matrix extends Object implements Serializable
| Constructor and Description |
|---|
Matrix() |
Matrix(double[][] A) |
Matrix(int rowCount,
int columnCount) |
| Modifier and Type | Method and Description |
|---|---|
List<Vec> |
columnVectors() |
void |
copy(Matrix rhs) |
boolean |
equals(Object rhs) |
double |
get(int rowIndex,
int columnIndex) |
static Matrix |
identity(int dimension) |
boolean |
isSymmetric() |
Matrix |
makeCopy() |
Matrix |
multiply(Matrix rhs) |
Vec |
multiply(Vec rhs) |
Vec |
rowAt(int rowIndex) |
void |
set(int rowIndex,
int columnIndex,
double value) |
void |
setAll(double value) |
void |
setRow(int rowIndex,
Vec rowVector) |
public Matrix()
public Matrix(double[][] A)
public Matrix(int rowCount,
int columnCount)
public void setRow(int rowIndex,
Vec rowVector)
public static Matrix identity(int dimension)
public Matrix makeCopy()
public void copy(Matrix rhs)
public void set(int rowIndex,
int columnIndex,
double value)
public Vec rowAt(int rowIndex)
public void setAll(double value)
public double get(int rowIndex,
int columnIndex)
public boolean isSymmetric()
Copyright © 2017. All rights reserved.