  | FloatBandMatrixDivide(FloatBandMatrix, Single) Method | 
            Divides the non-zero elements of a banded matrix by a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatBandMatrix Divide(
	FloatBandMatrix A,
	float a
)
Public Shared Function Divide ( 
	A As FloatBandMatrix,
	a As Single
) As FloatBandMatrix
public:
static FloatBandMatrix^ Divide(
	FloatBandMatrix^ A, 
	float a
)
static member Divide : 
        A : FloatBandMatrix * 
        a : float32 -> FloatBandMatrix Parameters
- A  FloatBandMatrix
 - A banded matrix.
 - a  Single
 - A scalar.
 
Return Value
FloatBandMatrixA banded matrix, 
B, with the same upper and lower bandwidths as 
A,
            and 
B[i,j] = A[i,j] / a whenever 
j - i is less than or equal to the 
            upper bandwidth of 
A, or 
i - j is less than or equal to the lower 
            bandwidth of 
A.
See Also