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