.NET Matrix Library
Subtract(Complex,CVector) Method
See Also  Send Feedback



alpha
A complex representing the scalar from which to subtract the vector.
x
A CVector instance representing the vector to subtract from the scalar.
Subtracts a complex vector from a scalar.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Subtract( _
   ByVal alpha As Complex, _
   ByVal x As CVector _
) As CVector
Visual Basic (Usage)Copy Code
Dim alpha As Complex
Dim x As CVector
Dim value As CVector
 
value = CVector.Subtract(alpha, x)
C# 
public static CVector Subtract( 
   Complex alpha,
   CVector x
)
C++/CLI 
public:
static CVector^ Subtract( 
   Complex alpha,
   CVector^ x
) 

Parameters

alpha
A complex representing the scalar from which to subtract the vector.
x
A CVector instance representing the vector to subtract from the scalar.

Return Value

A CVector object representing the result of the subtraction.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library