|  | DoubleComplexMatrixAdd(DoubleComplex, DoubleComplexMatrix, DoubleComplexMatrix) Method | 
            Adds a scalar and a matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static void Add(
	DoubleComplex s,
	DoubleComplexMatrix A,
	DoubleComplexMatrix B
)
Public Shared Sub Add ( 
	s As DoubleComplex,
	A As DoubleComplexMatrix,
	B As DoubleComplexMatrix
)
public:
static void Add(
	DoubleComplex s, 
	DoubleComplexMatrix^ A, 
	DoubleComplexMatrix^ B
)
static member Add : 
        s : DoubleComplex * 
        A : DoubleComplexMatrix * 
        B : DoubleComplexMatrix -> unit Parameters
- s  DoubleComplex
- A scalar.
- A  DoubleComplexMatrix
- A matrix.
- B  DoubleComplexMatrix
- A matrix whose contents are overwritten with the sum:
            B[i,j] = s + A[i,j].
 Exceptions
Exceptions See Also
See Also