필터 지우기
필터 지우기

performing a command for the firts time

조회 수: 2 (최근 30일)
Meisam
Meisam 2012년 3월 1일
Hi, The question is that How should I ask matlab to perform a coomand for the first time i reach it. to make it clear I have a times(second) like this: 4 4.2 4.4 4.6 4.8 5 5.2 5.4 5.6 5.8....... and I have ti=5.1 s and I want to say that
for i=1:100 if for the first time t>=ti statements end end so the statemenst should be performed just in 5.2 and not for others.
  댓글 수: 1
Meisam
Meisam 2012년 3월 1일
sorry for bad spelling, this keyboard sometimes does not work well, it is Command not coomand

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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 3월 1일
ti = 5.1;
for i1 = 1:numel(t)
if t(i1) > ti
% your statements
break;
end
end
or
t = [4 4.2 4.4 4.6 4.8 5 5.2 5.4 5.6 5.8] ;
ti = 5.1;
dt = t-ti;
ttest = abs(dt - min(abs(dt))) < eps*100;
for j1 = 1:numel(ttest)
if ttest(j1)
% your statements
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by