Accord.Math.Vector4.Abs C# (CSharp) Method

Abs() public method

Calculate absolute values of the vector.
public Abs ( ) : Vector4
return Vector4
        public Vector4 Abs( )
        {
            return new Vector4( System.Math.Abs( X ), System.Math.Abs( Y ), System.Math.Abs( Z ), System.Math.Abs( W ) );
        }