Matrix.Round<T> Method

Returns a vector whose elements are the components of another vector rounded to the nearest integer.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<T> Round<T>(
	this Vector<T> vector,
	MidpointRounding midpointRounding
)

Parameters

vector  Vector<T>
A Vector<T>.
midpointRounding  MidpointRounding
A MidpointRounding that specifies how values at the midpoint between two integers should be rounded.

Type Parameters

T

Return Value

Vector<T>
A vector whose elements are the components of vector rounded to the nearest integer.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullExceptionvector is null.

See Also