Click or drag to resize

DenseVector Operators and Type Conversions

The DenseVector type exposes the following members.

Operators
 NameDescription
Public operatorStatic memberAddition(DenseVector, DenseVector) Adds two Vectors together and returns the results.
Public operatorStatic memberDivision(DenseVector, Single) Divides a vector with a scalar.
Public operatorStatic member(DenseVector to Single) Returns a reference to the internal data structure.
Public operatorStatic member(Single to DenseVector) Returns a vector bound directly to a reference of the provided array.
Public operatorStatic memberModulus(DenseVector, Single) Computes the remainder (% operator), where the result has the sign of the dividend, of each element of the vector of the given divisor.
Public operatorStatic memberMultiply(DenseVector, DenseVector) Computes the dot product between two Vectors.
Public operatorStatic memberMultiply(DenseVector, Single) Multiplies a vector with a scalar.
Public operatorStatic memberMultiply(Single, DenseVector) Multiplies a vector with a scalar.
Public operatorStatic memberSubtraction(DenseVector, DenseVector) Subtracts two Vectors and returns the results.
Public operatorStatic memberUnaryNegation(DenseVector) Returns a Vector containing the negated values of rightSide.
Top
See Also