필터 지우기
필터 지우기

how to solve a system of equations?

조회 수: 1 (최근 30일)
P
P 2011년 5월 31일
I have this system: J(21x21) * X(21x1)=J(21X21) * B(21x1) - F(21X1).
I have to calculate the matrix X without using the 'inv' function X=inv(A) * J * B - A, X must have this dimension(21x1) .
The matrix J,B,F are calculated.

답변 (1개)

Matt Fig
Matt Fig 2011년 5월 31일
% Choose some values:
J = rand(21);
B = rand(21,1);
F = rand(21,1);
% Calculate X based on J*X = J*B-F
X = J\(J*B-F) % Here is what you want...
% Now check:
max(abs(J*X - (J*B-F))) % This should be a small number.

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by