Click or drag to resize

ConnectivityMatrixMultiply(ConnectivityMatrix, ConnectivityMatrix) Operator

Multiply two lower connectivity matrices. Multiply two lower connectivity matrices.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static ConnectivityMatrix operator *(
	ConnectivityMatrix A,
	ConnectivityMatrix B
)

Parameters

A  ConnectivityMatrix
A connectivity matrix.
B  ConnectivityMatrix
A connectivity matrix.

Return Value

ConnectivityMatrix
A connectivity matrix C where C[i,j] = A[i,j] * B[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two matrices do not have the same order.
Remarks
This is not the inner product of A and B.
See Also