|  | DoubleComplexMatrixAdd(DoubleComplexMatrix, DoubleComplex) Method | 
            Adds a matrix and a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplexMatrix Add(
	DoubleComplexMatrix A,
	DoubleComplex s
)
Public Shared Function Add ( 
	A As DoubleComplexMatrix,
	s As DoubleComplex
) As DoubleComplexMatrix
public:
static DoubleComplexMatrix^ Add(
	DoubleComplexMatrix^ A, 
	DoubleComplex s
)
static member Add : 
        A : DoubleComplexMatrix * 
        s : DoubleComplex -> DoubleComplexMatrix Parameters
- A  DoubleComplexMatrix
- A matrix.
- s  DoubleComplex
- A scalar.
Return Value
DoubleComplexMatrixA matrix 
B where 
B[i,j] = A[i,j] + s.
 See Also
See Also