Version

Line(Complex,Complex,Int32) Method

Returns a ComplexVector with evenly spaced Complex elements.
Syntax
'Declaration
 
Public Overloads Shared Function Line( _
   ByVal start As Complex, _
   ByVal end As Complex, _
   ByVal length As Integer _
) As ComplexVector
public static ComplexVector Line( 
   Complex start,
   Complex end,
   int length
)

Parameters

start
The first element of the ComplexVector.
end
The last element of the ComplexVector.
length
The length of the ComplexVector.

Return Value

A ComplexVector with evenly spaced elements.
Exceptions
ExceptionDescription
System.ArgumentExceptionOccurs when length is less than 1.
System.ArgumentExceptionOccurs when start equals end but length does not equal 1.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also