How can I solve this equation in MATLAB

조회 수: 2 (최근 30일)
Ezgi
Ezgi 2014년 4월 3일
댓글: Salaheddin Hosseinzadeh 2014년 4월 3일
x2=x4+x6
x4=x2+x6
x6=x2+x4
I have these system equations. How can I solve them?
  댓글 수: 2
Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2014년 4월 3일
Would you please write your equation or series of equations in a more mathematical way and in seperate lines please. It shouldn' be had to solve this as it seems.
Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2014년 4월 3일
What's this?!! 2=8 !! and 4=8 ?!!! 6=8 !!!
I don't get it!

댓글을 달려면 로그인하십시오.

답변 (1개)

Grzegorz Knor
Grzegorz Knor 2014년 4월 3일
Use mldivide operator to solve systems of linear equations of type Ax = b:
In your case:
A = [1 -1 -1; -1 1 -1; -1 -1 1]
b = [0;0;0]

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by