Multiplies the non-zero elements of a Hermitian banded matrix by a scalar.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleHermitianBandMatrix operator *(
	DoubleComplex a,
	DoubleHermitianBandMatrix A
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	a As DoubleComplex, _
	A As DoubleHermitianBandMatrix _
) As DoubleHermitianBandMatrix
Visual C++
public:
static DoubleHermitianBandMatrix^ operator *(
	DoubleComplex a, 
	DoubleHermitianBandMatrix^ A
)

Return Value

A Hermitian banded matrix, B, with the same half bandwidth as A, and B[i,j] = a * A[i,j] whenever j - i is less than or equal to the half bandwidth of A, or i - j is less than or equal to the half bandwidth of A.

See Also