Matrix.GreaterThan Operator

Overload List

#SignatureDescription
1class operator GreaterThan(const ALeft: Matrix; const ARight: Matrix): Boolean;Returns true, if ALeft is greater than ARight.
2class operator GreaterThan(const ALeft: Matrix; const ARight: TCplx): Boolean;Returns true, if ALeft is greater than ARight.
3class operator GreaterThan(const ALeft: Matrix; const ARight: Vector): Boolean;Returns true, if ALeft is greater than ARight.
4class operator GreaterThan(const ALeft: Matrix; const ARight: Double): Boolean;Returns true, if ALeft is greater than ARight.
5class operator GreaterThan(const ALeft: TCplx; const ARight: Matrix): Boolean;Returns true, if ALeft is greater than ARight.
6class operator GreaterThan(const ALeft: Vector; const ARight: Matrix): Boolean;Returns true, if ALeft is greater than ARight.
7class operator GreaterThan(const ALeft: Double; const ARight: Matrix): Boolean;Returns true, if ALeft is greater than ARight.

Overload 1: class operator GreaterThan(const ALeft: Matrix; const ARight: Matrix): Boolean;

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightMatrix

Returns: Boolean

Remarks:

Returns true, if ALeft is greater than to all elements in ARight.

Overload 2: class operator GreaterThan(const ALeft: Matrix; const ARight: TCplx): Boolean;

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightTCplxscalar

Returns: Boolean

Remarks:

Returns true, if all elements in ALeft are greater than ARight.

Overload 3: class operator GreaterThan(const ALeft: Matrix; const ARight: Vector): Boolean;

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightVector

Returns: Boolean

Remarks:

Returns true, if ALeft is greater than to all elements in ARight.

Overload 4: class operator GreaterThan(const ALeft: Matrix; const ARight: Double): Boolean;

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightDoublescalar

Returns: Boolean

Remarks:

Returns true, if all elements in ALeft are greater than ARight.

Overload 5: class operator GreaterThan(const ALeft: TCplx; const ARight: Matrix): Boolean;

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftTCplxscalar
2ARightMatrix

Returns: Boolean

Remarks:

Returns true, if ALeft is greater than to all elements in ARight.

Overload 6: class operator GreaterThan(const ALeft: Vector; const ARight: Matrix): Boolean;

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftVector
2ARightMatrix

Returns: Boolean

Remarks:

Returns true, if ALeft is greater than to all elements in ARight.

Overload 7: class operator GreaterThan(const ALeft: Double; const ARight: Matrix): Boolean;

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftDoublescalar
2ARightMatrix

Returns: Boolean

Remarks:

Returns true, if ALeft is greater than to all elements in ARight.