|  | DoubleTriDiagMatrixMultiply(Double, DoubleTriDiagMatrix) Method | 
            Multiplies the non-zero elements of a tridiagonal matrix by a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleTriDiagMatrix Multiply(
	double a,
	DoubleTriDiagMatrix A
)
Public Shared Function Multiply ( 
	a As Double,
	A As DoubleTriDiagMatrix
) As DoubleTriDiagMatrix
public:
static DoubleTriDiagMatrix^ Multiply(
	double a, 
	DoubleTriDiagMatrix^ A
)
static member Multiply : 
        a : float * 
        A : DoubleTriDiagMatrix -> DoubleTriDiagMatrix Parameters
- a  Double
- A scalar.
- A  DoubleTriDiagMatrix
- A tridiagonal matrix.
Return Value
DoubleTriDiagMatrixA tridiagonal matrix, 
B, with the same dimensions as 
A,
            and 
B[i,j] = a * A[i,j] whenever 
j - i is less than or equal to 1,
            or 
i - j is less than or equal to 1.
 See Also
See Also