Click or drag to resize

VectorT Operators

The VectorT type exposes the following members.

Operators
 NameDescription
Public operatorStatic memberAddition(T, VectorT) Adds a scalar to each element of a vector.
Public operatorStatic memberAddition(VectorT, T) Adds a scalar to each element of a vector.
Public operatorStatic memberAddition(VectorT, VectorT) Adds two Vectors together and returns the results.
Public operatorStatic memberDivision(T, VectorT) Divides a scalar with a vector.
Public operatorStatic memberDivision(VectorT, T) Divides a vector with a scalar.
Public operatorStatic memberDivision(VectorT, VectorT) Pointwise divides two Vectors.
Public operatorStatic memberDotDivide(VectorT, VectorT) Pointwise divides one vector by another vector.
Public operatorStatic memberDotHat(VectorT, T) Pointwise raises a vector to a scalar power.
Public operatorStatic memberDotHat(VectorT, VectorT) Pointwise raises a vector to the powers provided by another vector.
Public operatorStatic memberDotMultiply(VectorT, VectorT) Pointwise multiplies two vectors.
Public operatorStatic memberDotPercent(VectorT, VectorT) Pointwise computes the remainder of one vector divided by another vector.
Public operatorStatic memberModulus(T, VectorT) Computes the remainder (% operator), where the result has the sign of the dividend, of the given dividend of each element of the vector.
Public operatorStatic memberModulus(VectorT, T) 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 memberModulus(VectorT, VectorT) Computes the pointwise remainder (% operator), where the result has the sign of the dividend, of each element of two vectors.
Public operatorStatic memberMultiply(T, VectorT) Multiplies a vector with a scalar.
Public operatorStatic memberMultiply(VectorT, T) Multiplies a vector with a scalar.
Public operatorStatic memberMultiply(VectorT, VectorT) Computes the dot product between two Vectors.
Public operatorStatic memberSubtraction(T, VectorT) Subtracts each element of a vector from a scalar.
Public operatorStatic memberSubtraction(VectorT, T) Subtracts a scalar from each element of a vector.
Public operatorStatic memberSubtraction(VectorT, VectorT) Subtracts two Vectors and returns the results.
Public operatorStatic memberUnaryNegation(VectorT) Returns a Vector containing the negated values of rightSide.
Public operatorStatic memberUnaryPlus(VectorT) Returns a Vector containing the same values of rightSide.
Top
See Also