MtxExprInt.MulAndAdd Method

Overload List

#SignatureDescription
1function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; const Z: TMtxVecInt): MatrixInt;Result = X*Y + Z
2function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; const Z: TMtxVecInt; zScale: Integer): MatrixInt;Result = X*Y + Z*zScale
3function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; Z: Integer): MatrixInt;Result = X*Y + zScalar
4function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt): MatrixInt;Result = X*Y*xyScale + Z
5function MulAndAdd(const X: TMtxInt; Y: Integer; Z: Integer): MatrixInt;Result = (X*yScalar) + zScalar
6function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt): VectorInt;Result = X*Y + Z
7function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt; zScale: Integer): VectorInt;Result = X*Y + Z*zScale
8function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; Z: Integer): VectorInt;Result = X*Y + zScalar
9function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt): VectorInt;Result = X*Y*xyScale + Z
10function MulAndAdd(const X: TVecInt; Y: Integer; Z: Integer): VectorInt;Result = (X*yScalar) + zScalar
11function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt; zScale: Integer): MatrixInt;Result = (X*Y)*xyScale + Z*zScale
12function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; xyScale: Integer; Z: Integer): MatrixInt;Result = (X*Y)*xyScale + zScalar
13function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt; zScale: Integer): VectorInt;Result = (X*Y)*xyScale + Z*zScale
14function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; xyScale: Integer; Z: Integer): VectorInt;Result = (X*Y)*xyScale + zScalar

Overload 1: function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; const Z: TMtxVecInt): MatrixInt;

Compute X*Y + Z

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3ZTMtxVecInt

Returns: MatrixInt

Overload 2: function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; const Z: TMtxVecInt; zScale: Integer): MatrixInt;

Compute X*Y + Z*zScale

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3ZTMtxVecInt
4zScaleInteger

Returns: MatrixInt

Overload 3: function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; Z: Integer): MatrixInt;

Compute X*Y + zScalar

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3ZInteger

Returns: MatrixInt

Overload 4: function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt): MatrixInt;

Compute X*Y*xyScale + Z

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3xyScaleInteger
4ZTMtxVecInt

Returns: MatrixInt

Overload 5: function MulAndAdd(const X: TMtxInt; Y: Integer; Z: Integer): MatrixInt;

Compute (X*yScalar) + zScalar

#NameTypeDescription
1XTMtxInt
2YInteger
3ZInteger

Returns: MatrixInt

Overload 6: function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt): VectorInt;

Compute X*Y + Z

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3ZTMtxVecInt

Returns: VectorInt

Overload 7: function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt; zScale: Integer): VectorInt;

Compute X*Y + Z*zScale

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3ZTMtxVecInt
4zScaleInteger

Returns: VectorInt

Overload 8: function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; Z: Integer): VectorInt;

Compute X*Y + zScalar

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3ZInteger

Returns: VectorInt

Overload 9: function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt): VectorInt;

Compute X*Y*xyScale + Z

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3xyScaleInteger
4ZTMtxVecInt

Returns: VectorInt

Overload 10: function MulAndAdd(const X: TVecInt; Y: Integer; Z: Integer): VectorInt;

Compute (X*yScalar) + zScalar

#NameTypeDescription
1XTVecInt
2YInteger
3ZInteger

Returns: VectorInt

Overload 11: function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt; zScale: Integer): MatrixInt;

Compute (X*Y)*xyScale + Z*zScale

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3xyScaleInteger
4ZTMtxVecInt
5zScaleInteger

Returns: MatrixInt

Overload 12: function MulAndAdd(const X: TMtxInt; const Y: TMtxVecInt; xyScale: Integer; Z: Integer): MatrixInt;

Compute (X*Y)*xyScale + zScalar

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3xyScaleInteger
4ZInteger

Returns: MatrixInt

Overload 13: function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; xyScale: Integer; const Z: TMtxVecInt; zScale: Integer): VectorInt;

Compute (X*Y)*xyScale + Z*zScale

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3xyScaleInteger
4ZTMtxVecInt
5zScaleInteger

Returns: VectorInt

Overload 14: function MulAndAdd(const X: TVecInt; const Y: TMtxVecInt; xyScale: Integer; Z: Integer): VectorInt;

Compute (X*Y)*xyScale + zScalar

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3xyScaleInteger
4ZInteger

Returns: VectorInt