Creates a new vector with the same size as a given vector, whose values are the result of applying the imaginary function to each element of the given vector. In this case, the vector will be made up of zeros, since there's no imaginary part.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatVector Imag(
	FloatVector v
)
Visual Basic (Declaration)
Public Shared Function Imag ( _
	v As FloatVector _
) As FloatVector
Visual C++
public:
static FloatVector^ Imag(
	FloatVector^ v
)

Parameters

v
Type: CenterSpace.NMath.Core..::.FloatVector
A vector.

Return Value

A new vector with the same size as v, whose values are all zero.

Remarks

u[i] = 0

See Also