- pinv: to compute the Moore-Penrose pseudoinverse -https://www.mathworks.com/help/matlab/ref/pinv.html
- To know more about the Moore-Penrose pseudoinverse, refer
- https://www.mathworks.com/help/matlab/ref/pinv.html#mw_ffa95973-29a2-48a1-adb0-5a4214e0d9cf
Inverse einer (singulären) Blockmatrix
조회 수: 1 (최근 30일)
이전 댓글 표시
Hallo zusammen,
ich versuche folgende Gleichung zu lösen:
Q = A - B*(C^-1)*B'
Hier sollen A und B erstmal beliebige Matrizen sein, und C ist eine Matrix der Form
C = [C1, C2'; C2, 0], mit C1,C2 als Submatrizen von C.
Da C offensichtlich singulär ist bzw. badly scaled, kann ich diese Gleichung über inv(C) nicht lösen. Gibt es für dieses Problem eine geeignete Funktion oder Vorgehensweise in Matlab?
Beste Grüße und Danke im Voraus
댓글 수: 0
답변 (1개)
Rajanya
2024년 8월 12일
I understand you are not being able to calculate ‘Q’ in the above equation because ‘C’ is a singular matrix. You can use the ‘Moore-Penrose pseudoinverse’ for calculating the pseudo-inverse of singular matrices. In MATLAB, you can use the ‘pinv’ function to compute the pseudoinverse of a singular matrix. You can compute the aforementioned equation in the following way:
C_pinv = pinv(C)
Q = A – B*C_pinv*B';
You can refer to the MATLAB documentation to know about the Moore-Penrose pseudoinverse:
Hope this answers your question.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!