TOpenCLVector.Add Method

Overload List

#SignatureDescription
1function Add(const Value: TCplx): TOpenCLMtxVec;Adds complex Value to all calling object complex elements.
└ indexed: function Add(const Value: TCplx; Index: Integer; Len: Integer): TOpenCLMtxVec;
2function Add(const Vec: TOpenCLMtxVec): TOpenCLMtxVec;Array addition.
└ indexed: function Add(const Vec: TOpenCLMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
3function Add(const Vec: TOpenCLMtxVec; const Value: TCplx): TOpenCLMtxVec;Adds complex Value to each element of the Vec object.
└ indexed: function Add(const Vec: TOpenCLMtxVec; const Value: TCplx; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
4function Add(const Src1: TOpenCLMtxVec; const Src2: TOpenCLMtxVec): TOpenCLMtxVec;Add each of Vec2 elements to corresponding elements in Vec1.
└ indexed: function Add(const Vec1: TOpenCLMtxVec; const Vec2: TOpenCLMtxVec; Vec1Index: Integer; Vec2Index: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
5function Add(const Vec: TOpenCLMtxVec; const Value: Double): TOpenCLMtxVec;Adds Value to the each element of the Vec object.
└ indexed: function Add(const Vec: TOpenCLMtxVec; const Value: Double; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
6function Add(const Value: Double): TOpenCLMtxVec;Adds Value to object elements.
└ indexed: function Add(const Value: Double; Index: Integer; Len: Integer): TOpenCLMtxVec;

Overload 1: function Add(const Value: TCplx): TOpenCLMtxVec;

Adds complex Value to all calling object complex elements.

#NameTypeDescription
1ValueTCplxscalar

Result: stored in self (calling object), returns self for chaining

Indexed: function Add(const Value: TCplx; Index: Integer; Len: Integer): TOpenCLMtxVec;

Adds complex Value to calling object complex elements [Index]..[Index+Len-1].

#NameTypeDescription
1ValueTCplxscalar
2IndexIntegerstart index
3LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

An exception is raised if array borders are overrun.

Overload 2: function Add(const Vec: TOpenCLMtxVec): TOpenCLMtxVec;

Array addition.

#NameTypeDescription
1VecTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix

Result: stored in self (calling object), returns self for chaining

Remarks:

Add each of Vec elements to corresponding elements in the calling object.

Indexed: function Add(const Vec: TOpenCLMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

Add Vec elements [VecIndex]..[VecIndex+Len-1] to calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1VecTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2VecIndexInteger
3IndexIntegerstart index
4LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

An exception is raised array borders are overrun.

Overload 3: function Add(const Vec: TOpenCLMtxVec; const Value: TCplx): TOpenCLMtxVec;

Adds complex Value to each element of the Vec object.

#NameTypeDescription
1VecTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2ValueTCplxscalar

Result: stored in self (calling object), returns self for chaining

Remarks:

Store the result to the calling object. Size property of the calling object is set automatically. TOpenCLBase.Complex property of the calling object is set to True.

Indexed: function Add(const Vec: TOpenCLMtxVec; const Value: TCplx; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

Adds complex Value to each elements of the Vec object in range [VecIndex]..[VecIndex+Len-1].

#NameTypeDescription
1VecTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2ValueTCplxscalar
3VecIndexInteger
4IndexIntegerstart index
5LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

Stores the result to elements [Index]..[Index+Len-1] of the calling object. Size of the calling object is not changed. An exception is raised if array borders are overrun. TOpenCLBase.Complex property of the calling object is set to True.

Overload 4: function Add(const Src1: TOpenCLMtxVec; const Src2: TOpenCLMtxVec): TOpenCLMtxVec;

Add each of Vec2 elements to corresponding elements in Vec1.

#NameTypeDescription
1Src1TOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2Src2TOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix

Result: stored in self (calling object), returns self for chaining

Remarks:

The results are stored in the calling object. Size and TOpenCLBase.Complex properties of the calling object are set implicitly to match Vec1 and Vec2 vectors.

Indexed: function Add(const Vec1: TOpenCLMtxVec; const Vec2: TOpenCLMtxVec; Vec1Index: Integer; Vec2Index: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

Add Vec1 elements [Vec1Index]..[Vec1Index+Len-1] to Vec2 elements [Vec2Index]..[Vec2Index+Len-1].

#NameTypeDescription
1Vec1TOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2Vec2TOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
3Vec1IndexInteger
4Vec2IndexInteger
5IndexIntegerstart index
6LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

Store the results in calling object elements [Index]..[Index+Len-1]. An exception is raised array borders are overrun.

Overload 5: function Add(const Vec: TOpenCLMtxVec; const Value: Double): TOpenCLMtxVec;

Adds Value to the each element of the Vec object.

#NameTypeDescription
1VecTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2ValueDoublescalar

Result: stored in self (calling object), returns self for chaining

Remarks:

Stores the result in the calling object. Size and TOpenCLBase.Complex properties of the calling object are set automatically.

Indexed: function Add(const Vec: TOpenCLMtxVec; const Value: Double; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

Adds Value to each element of Vec object in range [VecIndex]..[VecIndex+Len-1].

#NameTypeDescription
1VecTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2ValueDoublescalar
3VecIndexInteger
4IndexIntegerstart index
5LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

Stores result to elements [Index]..[Index+Len-1] of the calling object. Size of the calling object is not changed. An exception is raised if array borders are overrun. TOpenCLBase.Complex property of the calling object is set implicitly.

Overload 6: function Add(const Value: Double): TOpenCLMtxVec;

Adds Value to object elements.

#NameTypeDescription
1ValueDoublescalar

Result: stored in self (calling object), returns self for chaining

Indexed: function Add(const Value: Double; Index: Integer; Len: Integer): TOpenCLMtxVec;

Adds Value to calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1ValueDoublescalar
2IndexIntegerstart index
3LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

An exception is raised if array borders are overrun.