  | NMathFunctionsAbs(DoubleComplexVector) Method | 
            Creates a new vector with the same dimension as a given vector, whose values
            are the result of applying the absolute value function to each element
            of the vector.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleVector Abs(
	DoubleComplexVector v
)
Public Shared Function Abs ( 
	v As DoubleComplexVector
) As DoubleVector
public:
static DoubleVector^ Abs(
	DoubleComplexVector^ v
)
static member Abs : 
        v : DoubleComplexVector -> DoubleVector Parameters
- v  DoubleComplexVector
 - A complex vector.
 
Return Value
DoubleVectorA new vector.
Remarksw[i] = NMathFunctions.Abs(v[i])
See Also