MtxExprInt.MulAndDiv Method

Overload List

#SignatureDescription
1function MulAndDiv(const X: TMtxInt; const Y: TMtxVecInt; const Z: TMtxVecInt): MatrixInt;Result = X * Y / Z
2function MulAndDiv(const X: TMtxInt; const Y: TMtxVecInt; const Z: Integer): MatrixInt;Result = X * Y / zScalar
3function MulAndDiv(const X: TMtxInt; const Y: TMtxVecInt; const xyScale: Integer; const Z: TMtxVecInt): MatrixInt;Result = X * Y * xyScale / Z
4function MulAndDiv(const X: TVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt): VectorInt;Result = X * Y / Z
5function MulAndDiv(const X: TVecInt; const Y: TMtxVecInt; const Z: Integer): VectorInt;Result = X * Y / zScalar
6function MulAndDiv(const X: TVecInt; const Y: TMtxVecInt; const xyScale: Integer; const Z: TMtxVecInt): VectorInt;Result = X * Y * xyScale / Z

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

Compute X * Y / Z

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3ZTMtxVecInt

Returns: MatrixInt

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

Compute X * Y / zScalar

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3ZInteger

Returns: MatrixInt

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

Compute X Y xyScale / Z

#NameTypeDescription
1XTMtxInt
2YTMtxVecInt
3xyScaleInteger
4ZTMtxVecInt

Returns: MatrixInt

Overload 4: function MulAndDiv(const X: TVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt): VectorInt;

Compute X * Y / Z

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3ZTMtxVecInt

Returns: VectorInt

Overload 5: function MulAndDiv(const X: TVecInt; const Y: TMtxVecInt; const Z: Integer): VectorInt;

Compute X * Y / zScalar

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3ZInteger

Returns: VectorInt

Overload 6: function MulAndDiv(const X: TVecInt; const Y: TMtxVecInt; const xyScale: Integer; const Z: TMtxVecInt): VectorInt;

Compute X Y xyScale / Z

#NameTypeDescription
1XTVecInt
2YTMtxVecInt
3xyScaleInteger
4ZTMtxVecInt

Returns: VectorInt