ComplexExtensions Sum Method ElecNetKit Documentation
Returns the sum of a set of complex numbers.

Namespace: ElecNetKit.Convenience
Assembly: ElecNetKit.Core (in ElecNetKit.Core.dll) Version: 1.1.4771.27370 (1.1.0.0)
Syntax

public static Complex Sum(
	this IEnumerable<Complex> enumerable
)

Parameters

enumerable
Type: OnlineSystem.Collections.Generic IEnumerable OnlineComplex 
The set of complex numbers to sum.

Return Value

The sum of the complex numbers in enumerable.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type OnlineIEnumerable OnlineComplex . When you use instance method syntax to call this method, omit the first parameter. For more information, see OnlineExtension Methods (Visual Basic) or OnlineExtension Methods (C# Programming Guide).
See Also