How to solve equation AX=B where A is symmetric like matrix ?

조회 수: 11 (최근 30일)
Phanindra Reddy Ravi
Phanindra Reddy Ravi 2021년 1월 31일
답변: Shubham Rawat 2021년 2월 3일
Consider Ax=B where A is 4x4 and two values of x are known and 2 values of B are known. Then how to find other four unknowns?
  댓글 수: 1
John D'Errico
John D'Errico 2021년 2월 1일
Think about how you would solve the problem by hand. You would convert it to a problem wehre you mosve the constant (known) terms to the right hand side. Then you would move the unknowns to the left hand side. Now you would create a NEW matrix that would describe that system, and solve it, using backslash.
Or, you could be lazy, just use solve.

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

답변 (1개)

Shubham Rawat
Shubham Rawat 2021년 2월 3일
Hi Phanindra,
You may look use this code for your reference:
syms b1 b2 x1 x2
A = magic(4); %random 4*4 matrix
x = [x1;x2;4;5];
b = [6;7;b1;b2];
S = solve(A*x == b); %used solve to solve these equations
% resuls
S.x1
S.x2
S.b1
S.b2
Hope this Helps!

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by