Matrix.GreaterThanOrEqual Operator

Overload List

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

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

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftMatrix
2ARightMatrix

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftMatrix
2ARightTCplxscalar

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftMatrix
2ARightVector

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftMatrix
2ARightDoublescalar

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftTCplxscalar
2ARightMatrix

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftVector
2ARightMatrix

Returns: Boolean

Remarks:

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

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

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftDoublescalar
2ARightMatrix

Returns: Boolean

Remarks:

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