Click or drag to resize

NMathFunctionsImag(FloatVector) Method

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: 7.4
Syntax
public static FloatVector Imag(
	FloatVector v
)

Parameters

v  FloatVector
A vector.

Return Value

FloatVector
A new vector with the same size as v, whose values are all zero.
Remarks
u[i] = 0
See Also