필터 지우기
필터 지우기

One equation, two unknowns. How do I create a table of possible solutions?

조회 수: 4 (최근 30일)
Richard
Richard 2014년 1월 30일
답변: SooShiant 2014년 2월 20일
I have one equation and two unknowns. How do I create a table of possible solutions?
  댓글 수: 1
John D'Errico
John D'Errico 2014년 2월 20일
Infinitely many solutions, so an infinitely long table. You will be better off learning how to parameterize the solutions in a simple formula. Essentially learn the mathematics of how to solve your problem.

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

답변 (2개)

SooShiant
SooShiant 2014년 2월 20일
Here is a simple example which you can change the equation and range and solve yours. The equation is 12x+9y+7z-60=0 where x,y,z are integers varies 0 to 10:
x=[0:1:10];
y=[0:1:10];
z=[0:1:10];
[X,Y,Z]=ndgrid(x,y,z);
F=12.*X+9.*Y+7.*Z-60;
idx=find(F==0);
[X(idx(:)),Y(idx(:)),Z(idx(:))];
Equations of this type are known as Diophantine equations.

Youssef  Khmou
Youssef Khmou 2014년 1월 30일
you have to define the support of the x,y , and you can infinite solutions

카테고리

Help CenterFile Exchange에서 Discrete Math에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by