Gaussian Elimination or LU

How can i solve this problem?
A=[-1 1 0 0;1 -2 1 0;0 1 -2 1;0 0 1 -1]
and B=[10; 0; 0; -10]
Ax=B
Whats x ?

Respuestas (2)

Shashank Prasanna
Shashank Prasanna el 19 de Mzo. de 2013

0 votos

determinant of A is zero, there can be infinite solutions.
One of the infinitely many solutions is the following:
x = pinv(A)*B
of course
x + c*null(A)
for any c are all solutions of the above system.

Categorías

Más información sobre Matrix Decomposition en Centro de ayuda y File Exchange.

Preguntada:

M
M
el 19 de Mzo. de 2013

Respondida:

el 29 de Nov. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by