필터 지우기
필터 지우기

I am trying to find the column space of a matrix

조회 수: 47 (최근 30일)
Taylor
Taylor 2023년 7월 13일
댓글: Torsten 2023년 7월 13일
I am working on a lab for my class and am having issues finding the column soace for the matrix.
A = [1,1,0,2,0;0,1,1,3,0;2,0,0,0,1;3,1,0,2,1;2,1,1,3,0;1,0,0,2,1]
This is the matrix that I am using. Tried the code
rrefA = rref(A)
pivotColumns = rrefA(:,1:end-1)
basisColumnSpace = A(:,pivotColumns)
but i cant get it to work I keep getting a error that i cant clear. I am wondering if there is another way to find the column space with the basic MatLab package. I would apperciate any help.
Thank You

답변 (1개)

ProblemSolver
ProblemSolver 2023년 7월 13일
@Taylor -- You just need to use this:
pivotColumns = find(any(rrefA, 1));
I hope this works!
  댓글 수: 1
Torsten
Torsten 2023년 7월 13일
Counterexample:
A = [1,1,0,2,4;0,1,1,3,6;2,0,0,4,8;3,1,0,5,10;2,1,1,6,12;1,0,0,7,14]
A = 6×5
1 1 0 2 4 0 1 1 3 6 2 0 0 4 8 3 1 0 5 10 2 1 1 6 12 1 0 0 7 14
rrefA = rref(A)
rrefA = 6×5
1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0
pivotColumns = find(any(rrefA, 1))
pivotColumns = 1×5
1 2 3 4 5
basisColumnSpace = A(:,pivotColumns)
basisColumnSpace = 6×5
1 1 0 2 4 0 1 1 3 6 2 0 0 4 8 3 1 0 5 10 2 1 1 6 12 1 0 0 7 14

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

카테고리

Help CenterFile Exchange에서 Preprocessing Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by