목표 한 지점의 시간에 따른 유속 (u,v)에 따라 입자 이동 양상 구현 코드 %% input control % input dot = 2; dt = .5; repeat = 30; % option all_dot = 0; line = 1; %% figure x = zeros(1,dot); y = zeros(1,dot); axis([0 10 0 10]) hold on;grid on; for jj = 1:dot plot(x(1,jj),y(1,jj),'ro') end info_dot = findobj(gca,'Type','line'); for ii = 2:repeat for jj = 1:dot x(ii,jj) = x(ii-1,jj)+rand*dt; y(ii,jj) = y(ii-1,jj)+rand*dt; set(i..