use a loop to print out 15 rational number between 1/12 and 2/12

조회 수: 5 (최근 30일)
Liliana Rios
Liliana Rios 2018년 11월 28일
답변: KSSV 2018년 11월 28일
I know there are an infinite amount of numbers between the 2 fractions.
i=1/12;limit=2/12;while i <= limit display(i);i=i+1;end
When the above is entered into MATLAB, it'll give one decimal answer

답변 (1개)

KSSV
KSSV 2018년 11월 28일
YOu should not add 1 to the i. YOu must add some small value like fix a tolerance and add. Check the below code:
i=1/12;
limit=2/12;
tol = 10^-3 ;
iwant = zeros([],1) ;
iwant(1) = i ;
count = 1 ;
while i <= limit
display(i);
i=i+tol;
count = count+1 ;
iwant(count) = i ;
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by