Info

この質問は閉じられています。 編集または回答するには再度開いてください。

problem with if test to test the increment in time

1 回表示 (過去 30 日間)
chikha said
chikha said 2014 年 5 月 25 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
salut svp il y a un probleme sur mon programe: je veux fait un test sur le temps, si le temp egale la période (1*T,2*T,...,n*T) entre dans la boucle et increment j
T = 1e-4; h = T/100; n = 1000;%par exemple Ts = 0:T:n*T; j = 1; for t =0:h:n*T if t == Ts j = j+1; end end
le probleme que le programe vérifie la condition (t == Ts) mais apprés ne vérifié pas svp aide moi

回答 (1 件)

George Papazafeiropoulos
George Papazafeiropoulos 2014 年 5 月 25 日
編集済み: George Papazafeiropoulos 2014 年 5 月 25 日
T = 1e-4;
h = T/100;
n = 1000;%par exemple
Ts = 0:T:n*T;
j = 1;
for t =0:h:n*T
if ismembc(t,Ts)
j = j+1;
end
end

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by