Effacer les filtres
Effacer les filtres

solve the following system of 3 linear equation in unknowns x, y and z? How do I accomplish this?

3 vues (au cours des 30 derniers jours)
We are given the 3 formulas,
2x+3y+4z=43
5x+6y+7z=65
x+y=11

Réponse acceptée

ChristianW
ChristianW le 25 Fév 2013
A = [2 3 4; 5 6 7; 1 1 0];
B = [43; 65; 11];
V = A\B;

Plus de réponses (1)

mehak
mehak le 8 Août 2023
A = [2 3 4; 5 6 7; 1 1 0];
B = [43; 65; 11];
V = A\B;

Catégories

En savoir plus sur Systems Of Linear Equations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by