ComplexMatrixIdentity Method |
Generates an identity matrix.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static ComplexMatrix Identity(
int rowDimension,
int columnDimension
)
Public Shared Function Identity (
rowDimension As Integer,
columnDimension As Integer
) As ComplexMatrix
public:
static ComplexMatrix^ Identity(
int rowDimension,
int columnDimension
)
static member Identity :
rowDimension : int *
columnDimension : int -> ComplexMatrix
Parameters
- rowDimension
- Type: SystemInt32
Number of rows. - columnDimension
- Type: SystemInt32
Number of columns.
Return Value
Type:
ComplexMatrixA new
ComplexMatrix with ones on the diagonal and zeros elsewhere.
See Also