MtxExpr.LQRSolve Method

Overload List

#SignatureDescription
1function LQRSolve(const B: TMtx; const A: TMtx; op: TMtxOperation): Matrix;Returns the X from LQR solving A*X = B.
2function LQRSolve(const B: TVec; const A: TMtx; op: TMtxOperation): Vector;Returns the X from LQR solving A*X = B.

Overload 1: function LQRSolve(const B: TMtx; const A: TMtx; op: TMtxOperation): Matrix;

Returns the X from LQR solving A*X = B.

#NameTypeDescription
1BTMtx
2ATMtx
3opTMtxOperation

Returns: Matrix

Remarks:

Internally calls Matrix.LQRSolve

Overload 2: function LQRSolve(const B: TVec; const A: TMtx; op: TMtxOperation): Vector;

Returns the X from LQR solving A*X = B.

#NameTypeDescription
1BTVec
2ATMtx
3opTMtxOperation

Returns: Vector

Remarks:

Internally calls Matrix.LQRSolve