Vector<T>.Project Method

Returns the projection of one vector onto another.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Vector<T> Project(
	Vector<T> source,
	Vector<T> target
)

Parameters

source  Vector<T>
The Vector<T> to project.
target  Vector<T>
The Vector<T> to project source onto.

Return Value

Vector<T>
A Vector<T> that is the projection of source onto target.

See Also