![]() |
IOLink C# 1.16.1
|
A dynamically sized arithmetic vector. More...
Public Member Functions | |
| VectorXf (global::System.IntPtr cPtr, bool cMemoryOwn) | |
| void | Dispose () |
| VectorXf (params float[] values) | |
| override bool | Equals (object obj) |
| VectorXf () | |
| Creates an empty vector. | |
| VectorXf (uint size) | |
| VectorXf (VectorXf other) | |
| uint | Size () |
| Returns the size of the vector, which also correspond to vector number of dimension. | |
| float | At (uint index) |
| Access vector's value at given index. | |
| void | SetAt (uint index, float value) |
| Set value as given index. | |
| double | SquaredLength () |
| double | Length () |
| void | Normalize () |
| Normalize the vector. | |
| string | ToString () |
| float | Dot (VectorXf v) |
| Dot product. | |
| VectorXf | Cross (VectorXf v) |
Static Public Member Functions | |
| static global::System.Runtime.InteropServices.HandleRef | getCPtr (VectorXf obj) |
| static global::System.Runtime.InteropServices.HandleRef | swigRelease (VectorXf obj) |
| static bool | operator== (VectorXf v1, VectorXf v2) |
| static bool | operator!= (VectorXf v1, VectorXf v2) |
| static VectorXf | operator+ (VectorXf v1, VectorXf v2) |
| static VectorXf | operator- (VectorXf v1, VectorXf v2) |
| static VectorXf | operator* (VectorXf v, float value) |
| static VectorXf | operator* (float value, VectorXf v) |
| static VectorXf | operator/ (VectorXf v, float value) |
| static VectorXf | operator* (VectorXf v1, VectorXf v2) |
| static VectorXf | operator/ (VectorXf v1, VectorXf v2) |
| static VectorXf | CreateUniform (uint size, float value) |
| static bool | InternalNotEqual (VectorXf v1, VectorXf v2) |
| static VectorXf | InternalDivides (VectorXf v, float value) |
| static VectorXf | InternalDivides (VectorXf v1, VectorXf v2) |
Protected Member Functions | |
| virtual void | Dispose (bool disposing) |
Protected Attributes | |
| bool | swigCMemOwn |
Properties | |
| float | this[uint index] [get, set] |
A dynamically sized arithmetic vector.
|
inline |
Creates an unitialized vector.
| size | The size of the vector. |
|
inlinestatic |
Creates a vector filled with one value.
| size | The size of the vector. |
| value | The value used to fill the vector. |
Cross product of two vectors. Work only for vectors of size 3.
|
inline |
Returns the vector's norm. Specifically, it is the L1 norm that's computed here.
|
inline |
Returns the vector's norm, squared. Specifically, it is the L1 norm that's computed here.