Contents:
SDK:
Examples:
Bases: ABC
ABC
Interface for projecting one vector onto another.
Projects vector_a onto vector_b.
vector_a (List[float]) – The vector to be projected.
vector_b (List[float]) – The vector onto which vector_a is projected.
The projection of vector_a onto vector_b.
List[float]