필터 지우기
필터 지우기

loop

조회 수: 1 (최근 30일)
Mate 2u
Mate 2u 2012년 6월 18일
Hi I need to do two loops, where the inputs of both need to be 0.4:0.01:0.99, any help on how to achieve this buy by still going through the conventionally i=1: etc (as need this for output).
  댓글 수: 1
Kevin Holst
Kevin Holst 2012년 6월 18일
could you try to describe this a little better, maybe with some of your own code in it. I'm assuming that:
for i = 0.4:0.01:0.99
end
...will not work for you.

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

채택된 답변

Walter Roberson
Walter Roberson 2012년 6월 18일
KVals = 0.4:0.01:0.99;
for K = 1 : length(KVals)
thisval = KVals(K);
...
end

추가 답변 (1개)

Thomas
Thomas 2012년 6월 18일
You could try something like
ii=0.4:0.01:0.99;
for count1 =1:length(ii)
for count2=1:length(ii)
output(count1,count2)= something
ii(count1) and ii(count 2) % these are the variable that you can use and the values in ii
end
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