Namespaces

Types

Type Collection

Namespace MathNet.Numerics

Methods

Public instance methods

bool Equals(object obj)

Parameters
return bool
object obj

int GetHashCode()

Parameters
return int

Type GetType()

Parameters
return Type

string ToString()

Parameters
return string

Public static methods

ICollection Concat(ICollection c1, ICollection c2)

Returns a collection resulting from the concatenation fromc1 and c2.
The call is performed in O(1) computational time, the concatenated collection is not built explicitly.
Parameters
return ICollection
ICollection c1 Should not be null.
ICollection c2 Should not be null.

ICollection Inter(ICollection c1, ICollection c2)

Returns a collection resulting from the mathematical intersection of c1 and c2.
Parameters
return ICollection
ICollection c1 Should not be null.
ICollection c2 Should not be null.

ICollection Minus(ICollection c1, ICollection c2)

Returns a collection resulting from the subtraction of the items of c2 to the collection c1.
The call is performed in O(c1.Count+c2.Count)
Parameters
return ICollection
ICollection c1 Should not be null.
ICollection c2 Should not be null.

ICollection Product(ICollection c1, ICollection c2)

Returns the cartesian product of the two collections c1and c2.
Parameters
return ICollection
ICollection c1 Should not be null.
ICollection c2 Should not be null.

ICollection Union(ICollection c1, ICollection c2)

Returns a collection resulting from the union of the items of c1 and c2.
Parameters
return ICollection
ICollection c1 Should not be null.
ICollection c2 Should not be null.