Matrix
<
any
>
A row x col matrix
Class
ColorDelegate
A type that represents a reference to a method with a parameter list and return type
CompareDelegate
A type that represents a reference to a method with a parameter list and return type
CompareFieldDelegate
A type that represents a reference to a method with a parameter list and return type
FindDelegate
A type that represents a reference to a method with a parameter list and return type
Method
public
Matrix
.
Constructor
(
int
row
,
int
column
,
values
,
diagonal
=
null
)
public
Matrix
<
any
>
Matrix
.
CofactorMatrix
Returns a matrix with elements that are term-by-term cofactors of the square matrix
public
int
Matrix
.
Cols
Return the number of columns in the matrix
public
virtual
int
object
.
Compare
(
value
)
Compares this object with another and returns (-1, 0, or 1)
public
static
Matrix
<
any
>
Matrix
.
Convert
(
value
)
Convert value into type Matrix, null if not successful
public
Matrix
<
any
>
Matrix
.
Copy
Returns a copy of this object
public
Matrix
.
Determinant
Returns the determinant of a matrix
public
Matrix
.
FindMax
Returns the maximum value or null
public
Matrix
.
FindMin
Returns the minimum value or null
public
Attribute
Matrix
.
GetEachType
Get the iterated type
public
virtual
Icon
object
.
GetIcon
Return a icon for this object
public
Matrix
.
GetImage
(
delegate
Color
ColorDelegate
(
int
row
,
int
col
,
value
)
color
,
altname
=
null
)
Get an image from matrix values
public
virtual
object
.
GetLayoutBlock
Return a layout inside a block
public
virtual
object
.
GetLayoutSpan
Return a layout inside a span
public
virtual
object
.
GetLayoutTip
Return a layout for the hint popup
public
virtual
object
.
GetSourceReference
Return a source reference for this object
public
virtual
void
object
.
GetTexSource
(
source
)
LaTeX source code for this object
public
Matrix
.
GetValue
(
int
row
,
int
column
)
Get the row and column value
public
void
Matrix
.
Initialize
(
value
=
null
)
Set all elements to a single value
public
Matrix
<
any
>
Matrix
.
Inverse
Returns the inverse of a matrix
public
Matrix
<
any
>
Matrix
.
Minor
(
int
row
,
int
column
)
Returns the first minor of matrix by removing the given row and column
public
Matrix
<
any
>
Matrix
.
MinorMatrix
Returns a matrix of minors for the matrix
public
Matrix
<
any
>
Matrix
.
Normalize
Returns the normalized form of the matrix (all entries divided by the determinant)
public
int
Matrix
.
Rows
Return the number of rows in the matrix
public
void
Matrix
.
SetValue
(
int
row
,
int
column
,
value
)
Modify the row and column value
public
[][]
Matrix
.
ToArray
Returns the current values to an array
public
Matrix
<
any
>
Matrix
.
Transpose
Returns the transpose of a matrix