필터 지우기
필터 지우기

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

조회 수: 3 (최근 30일)
We are given the 3 formulas,
2x+3y+4z=43
5x+6y+7z=65
x+y=11

채택된 답변

ChristianW
ChristianW 2013년 2월 25일
A = [2 3 4; 5 6 7; 1 1 0];
B = [43; 65; 11];
V = A\B;

추가 답변 (1개)

mehak
mehak 2023년 8월 8일
A = [2 3 4; 5 6 7; 1 1 0];
B = [43; 65; 11];
V = A\B;

카테고리

Help CenterFile Exchange에서 Systems Of Linear Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by