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