Inverse of a matrix

조회 수: 14 (최근 30일)
L'O.G.
L'O.G. 2023년 5월 16일
편집: Matt J 2023년 5월 16일
I want to solve the following for X2: A = B(X1+X2) where B is a matrix, and A, X1, and X2 are vectors. I can't divide by a matrix. So I believe I take the inverse. Is that right? What is the best way of doing this with very large matrices?
  댓글 수: 1
Matt J
Matt J 2023년 5월 16일
We would have to know what "very large" means to you.

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2023년 5월 16일
편집: Matt J 2023년 5월 16일
%Fake input data
B=rand(100); X1=rand(100,1); X2=rand(100,1);
A=B*(X1+X2);
%Now invert
X2_recovered=B\(A-B*X1);
norm(X2-X2_recovered) %Check discrepancy - should be small
ans = 4.4786e-13

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by