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