Vector<T>.AddCore Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

AddCore(T, Vector<T>) Adds a constant to a vector in-place.
AddCore(Vector<T>, Vector<T>) Adds two vectors.

Vector<T>.AddCore(T, Vector<T>)

Adds a constant to a vector in-place.
C#
protected virtual Vector<T> AddCore(
	T value,
	Vector<T> result
)

Parameters

value  T
The constant.
result  Vector<T>
The vector that is to hold the result. May be null.

Return Value

Vector<T>
A vector whose elements are the sum of the corresponding elements of this vector and value.

Vector<T>.AddCore(Vector<T>, Vector<T>)

Adds two vectors.
C#
protected virtual Vector<T> AddCore(
	Vector<T> other,
	Vector<T> result
)

Parameters

other  Vector<T>
The second vector.
result  Vector<T>
The vector that is to hold the result. May be null.

Return Value

Vector<T>
A vector whose elements are the sum of the corresponding elements of this vector and other.

Exceptions

DimensionMismatchException This vector and other do not have the same length.

See Also