Vector Methods |
The Vector type exposes the following members.
| Name | Description | |
|---|---|---|
| Abs | Returns a vector whose elements are the absolute values of the given vector elements | |
| Clone | Clones specified vector | |
| Copy | Copies content of one vector to another. Vectors must have same length. | |
| Equals | (Overrides ValueTypeEquals(Object)) | |
| GetEuclideanNorm | Returns Euclidean norm of difference between two vectors. | |
| GetHashCode | (Overrides ValueTypeGetHashCode) | |
| GetLInfinityNorm | Returns L-infinity norm of difference between two vectors. | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| Lerp | Performs linear intepolation between two vectors at specified point | |
| Max | Returns a vector each of whose elements is the maximal from the corresponding ones of argument vectors. Note that dimensions of the arguments must match. | |
| MulAdd | Adds vector v1 multiplied by factor to this object. | |
| ToArray | Copies vector to double[] array | |
| ToString | Convers vector to string representation. (Overrides ValueTypeToString) | |
| Zeros | Constructs vector of specified length filled with zeros |