solve the following system of 3 linear equation in unknowns x, y and z? How do I accomplish this?
Mostrar comentarios más antiguos
We are given the 3 formulas,
2x+3y+4z=43
5x+6y+7z=65
x+y=11
Respuesta aceptada
Más respuestas (1)
mehak
el 8 de Ag. de 2023
0 votos
A = [2 3 4; 5 6 7; 1 1 0];
B = [43; 65; 11];
V = A\B;
1 comentario
Walter Roberson
el 8 de Ag. de 2023
Categorías
Más información sobre Linear Algebra en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!