Click or drag to resize
VectorPlus Method
Returns the sum of this vector and the specified vector.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Vector Plus(
	Vector that
)

Parameters

that
Type: Algs4NetVector
the vector to add to this vector

Return Value

Type: Vector
the vector whose value is (this + that)
Exceptions
ExceptionCondition
ArgumentExceptionif the dimensions of the two vectors are not equal
See Also