  | NMathFunctionsArg(FloatHermitianMatrix) Method | 
            Creates a new matrix with the same dimensions as a given matrix, whose values
            are the result of applying the arg function to each element of the matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatMatrix Arg(
	FloatHermitianMatrix A
)
Public Shared Function Arg ( 
	A As FloatHermitianMatrix
) As FloatMatrix
public:
static FloatMatrix^ Arg(
	FloatHermitianMatrix^ A
)
static member Arg : 
        A : FloatHermitianMatrix -> FloatMatrix Parameters
- A  FloatHermitianMatrix
 - A matrix.
 
Return Value
FloatMatrixA new matrix.
RemarksB[i,j] = System.Math.Arg(A[i,j])
See Also