Package pulse.math.linear
Class RectangularMatrix
- java.lang.Object
-
- pulse.math.linear.RectangularMatrix
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SquareMatrix
public class RectangularMatrix extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected double[][]
x
-
Constructor Summary
Constructors Modifier Constructor Description protected
RectangularMatrix(double[][] args)
protected
RectangularMatrix(double[] data, int n)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
dimensionsMatch(RectangularMatrix m)
Checks if the dimension ofthis Matrix
andm
match, i.e.boolean
equals(Object o)
Checks whethero
is aSquareMatrix
with matching dimensions and all elements of which are (approximately) equal to the respective elements ofthis
matrix}.double
get(int m, int k)
double[][]
getData()
RectangularMatrix
multiply(double f)
Scales thisMatrix
byf
, which results in element-wise multiplication byf
.RectangularMatrix
multiply(RectangularMatrix m)
PerformsMatrix
multiplication.Vector
multiply(Vector v)
Multiplies thisMatrix
by the vectorv
, which is represented by aMatrix
, wheren
is the dimension ofv
.RectangularMatrix
subtract(RectangularMatrix m)
Performs an element-wise subtraction ofm
fromthis
if these matrices have matching dimensions.RectangularMatrix
sum(RectangularMatrix m)
Performs an element-wise summation ifthis
andm
have matching dimensions.String
toString()
Prints out matrix dimensions and all the elements contained in it.RectangularMatrix
transpose()
Transposes thisMatrix
, i.e.
-
-
-
Method Detail
-
sum
public RectangularMatrix sum(RectangularMatrix m)
Performs an element-wise summation ifthis
andm
have matching dimensions.- Parameters:
m
- anotherMatrix
of the same size asthis
one- Returns:
- the result of summation
-
subtract
public RectangularMatrix subtract(RectangularMatrix m)
Performs an element-wise subtraction ofm
fromthis
if these matrices have matching dimensions.- Parameters:
m
- anotherMatrix
of the same size asthis
one- Returns:
- the result of subtraction
-
multiply
public RectangularMatrix multiply(RectangularMatrix m)
Performs
Matrix
multiplication. Checks whether the dimensions of each matrix are appropriate (number of columns inthis
matrix should be equal to the number of rows inm
.- Parameters:
m
- anotherMatrix
suitable for multiplication- Returns:
- a
Matrix
, which is the result of multiplyingthis
bym
-
multiply
public RectangularMatrix multiply(double f)
Scales thisMatrix
byf
, which results in element-wise multiplication byf
.- Parameters:
f
- a numeric value- Returns:
- the scaled
Matrix
-
transpose
public RectangularMatrix transpose()
Transposes thisMatrix
, i.e. reflects it over the main diagonal.- Returns:
- a transposed
Matrix
-
get
public double get(int m, int k)
-
getData
public double[][] getData()
-
multiply
public Vector multiply(Vector v)
Multiplies this
Matrix
by the vectorv
, which is represented by aMatrix
, wheren
is the dimension ofv
. Noten
should be equal to the number of rows in thisMatrix
.- Parameters:
v
- aVector
.- Returns:
- the result of multiplication, which is a
Vector
.
-
toString
public String toString()
Prints out matrix dimensions and all the elements contained in it.
-
dimensionsMatch
public boolean dimensionsMatch(RectangularMatrix m)
Checks if the dimension ofthis Matrix
andm
match, i.e. if the number of rows is the same and the number of columns is the same- Parameters:
m
- anotherMatrix
- Returns:
true
if the dimensions match,false
otherwise.
-
-