Dense |
The DenseVector type exposes the following members.
| Name | Description | |
|---|---|---|
| Addition(DenseVector, DenseVector) | Adds two Vectors together and returns the results. | |
| Division(DenseVector, Double) | Divides a vector with a scalar. | |
| (DenseVector to Double) | Returns a reference to the internal data structure. | |
| (Double to DenseVector) | Returns a vector bound directly to a reference of the provided array. | |
| Modulus(DenseVector, Double) | Computes the remainder (% operator), where the result has the sign of the dividend, of each element of the vector of the given divisor. | |
| Multiply(DenseVector, DenseVector) | Computes the dot product between two Vectors. | |
| Multiply(DenseVector, Double) | Multiplies a vector with a scalar. | |
| Multiply(Double, DenseVector) | Multiplies a vector with a scalar. | |
| Subtraction(DenseVector, DenseVector) | Subtracts two Vectors and returns the results. | |
| UnaryNegation(DenseVector) | Returns a Vector containing the negated values of rightSide. |