Click or drag to resize

DoubleComplexUpperTriMatrixDivide(DoubleComplexUpperTriMatrix, DoubleComplex) Method

Divide an upper triangular matrix by a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexUpperTriMatrix Divide(
	DoubleComplexUpperTriMatrix A,
	DoubleComplex s
)

Parameters

A  DoubleComplexUpperTriMatrix
an upper triangular matrix.
s  DoubleComplex
A scalar.

Return Value

DoubleComplexUpperTriMatrix
an upper triangular matrix B where B[i,j] = A[i,j] / s.
See Also