필터 지우기
필터 지우기

what does it mean

조회 수: 1 (최근 30일)
Shruti Rishi Raj
Shruti Rishi Raj 2015년 3월 7일
답변: Image Analyst 2015년 3월 7일
for k = (i-1):-1:1

채택된 답변

Image Analyst
Image Analyst 2015년 3월 7일
When you say
for k = start : step : stop
the first expression, (i-1) in your case, will be the first/starting value of the loop iterator k. Then the next iteration k will be start+step, or i-1-1 = i-2 in your case. It keeps going until it gets to the "stop" value or goes past it (i.e., goes above it if the step is positive, or below it if the step value is negative). This is basic stuff. Please read the getting started section of the help for more essential information.

추가 답변 (1개)

rantunes
rantunes 2015년 3월 7일
Hey
You can answer your question by running:
for k = (i-1):-1:1;
k
end
Greets
  댓글 수: 1
rantunes
rantunes 2015년 3월 7일
without the semi-colon in the end of the line of the for

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

카테고리

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