필터 지우기
필터 지우기

rref( ) row echelon form MATLAB

조회 수: 8 (최근 30일)
ssmith
ssmith 2021년 11월 18일
댓글: ssmith 2021년 11월 18일
I found the row echelon form of my matrix A but now I am trying to find the solution set to the system. Is there a function that can do that in a way that rref( ) found the row echelon form? This is what I have so far:
A = [-1, 2, -3; 4, -5, 6]
R = rref(A)
I know once I have my row echelon, I want to get u1 = -1 and u2 = -2 but I do not know what the function is in matlab that performs this calculation.
Any guidance would be great

답변 (1개)

David Hill
David Hill 2021년 11월 18일
A=[-1 2;4 -5];
b=[-3;6];
x=A\b;
  댓글 수: 1
ssmith
ssmith 2021년 11월 18일
@David Hill what does the line
x = A\b
do? I thought a solution set was solving across the matrix made using rref(A)

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

Community Treasure Hunt

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

Start Hunting!

Translated by