I am trying to find the column space of a matrix
118 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (1)
ProblemSolver
el 13 de Jul. de 2023
4 comentarios
Walter Roberson
el 7 de Nov. de 2024 a las 18:52
I believe that @Torsten is providing a counter-example to illustrate the failure of @ProblemSolver approach. I do not believe that Torsten is attempting to illustrate a correct general method.
Carter Stahly
el 7 de Nov. de 2024 a las 19:05
That would make sense, thank you for the clarification.
Ver también
Categorías
Más información sobre Encryption / Cryptography en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!