Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how to form loop to jump from one element of matrix to other element.
1 回表示 (過去 30 日間)
古いコメントを表示
Hi friends,
N_temp_failure= [ 938 945 955 2002 2003 4565 4566 4567 ];
Nx=937;
while Nx<=4567 ( i mean last element of N_temp_failure ).
Nx=Nx+0.001;
if Nx ==938
Nx= 945-1; (i mean it should jump to second element of N_temp_failure subtracted by 1 )
else
Nx=Nx;
end
end
it should repeat after Nx reaches every element of N_temp_failure, until it reaches the last element. N_temp_failure will always be in ascending order.
Please help me,
Advance Thanks Jagadesh Rao Thalur
2 件のコメント
回答 (1 件)
Manoj
2014 年 11 月 21 日
Does this do what you want ?
N_temp_failure= [ 938 945 955 2002 2003 4565 4566 4567 ];
for ii=1:size(N_temp_failure,2)-1
Nx=N_temp_failure(ii)-1;
while Nx <= N_temp_failure(end);
Nx=Nx+0.001;
if Nx==N_temp_failure(ii)
Nx=N_temp_failure(ii+1)-1;
else
Nx=Nx;
end
end
end
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!