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