Matrix.LessThan Operator

Overload List

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

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

Returns true, if ALeft is less than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightMatrix

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is less than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightTCplxscalar

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is less than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightVector

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is less than ARight.

#NameTypeDescription
1ALeftMatrix
2ARightDoublescalar

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is less than ARight.

#NameTypeDescription
1ALeftTCplxscalar
2ARightMatrix

Returns: Boolean

Remarks:

Returns true, if ALeft is less from all elements in ARight.

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

Returns true, if ALeft is less than ARight.

#NameTypeDescription
1ALeftVector
2ARightMatrix

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is less than ARight.

#NameTypeDescription
1ALeftDoublescalar
2ARightMatrix

Returns: Boolean

Remarks:

Returns true, if ALeft is less from all elements in ARight.