I want to solve a problem with just numbers from 0 to 2, how do I do that?

1 vue (au cours des 30 derniers jours)
Roberto García Morones
Roberto García Morones le 30 Nov 2020
I'm doing a homework that consists of making a matrix according to these steps:
t= [0;1;2]
A= [1;1;0];
B= [1;1;1];
C= [0;1;1];
M= [A B C t]
sol= rref(M)
The thing is that I want to get a matrix that gives me values from 0 to 2. However, I don't get the correct answer since it gives me this:
sol =
1 0 0 1
0 1 0 1
0 0 1 1
Correct answer:
sol =
1 0 0 2
0 1 0 1
0 0 1 1
  2 commentaires
the cyclist
the cyclist le 30 Nov 2020
MATLAB gives
sol =
1 0 0 -1
0 1 0 1
0 0 1 1
right?
Roberto García Morones
Roberto García Morones le 30 Nov 2020
Yes, I forgot to put abs(rref(M))

Connectez-vous pour commenter.

Réponses (1)

the cyclist
the cyclist le 30 Nov 2020
Are you sure you copied everything from the assignment correctly? Can you post the text of the assignment here?
I did the Gauss-Jordan elimination with partial pivoting by hand, and get same result as MATLAB.
  4 commentaires
Roberto García Morones
Roberto García Morones le 30 Nov 2020
A little bit, in your case how would you code it so it gives me this solution?
sol =
1 0 0 2
0 1 0 1
0 0 1 1
Roberto García Morones
Roberto García Morones le 30 Nov 2020
Nevermind, I already did it. Thank you so much!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by