필터 지우기
필터 지우기

movie of particle tracking in MATLAB

조회 수: 7 (최근 30일)
Sanjana Singh
Sanjana Singh 2020년 6월 2일
답변: Image Analyst 2020년 6월 14일
I am writing a basic code to trace a streamline in MATLAB. I need to make a movie of the particles tracing a streamline (streakline). I know about streamparticles function but that isn't what I am looking for, I wish to select a particular streamline and trace a particle on that and record that motion. Is there some other method to accomplish this?

답변 (2개)

darova
darova 2020년 6월 14일
편집: darova 2020년 6월 14일
Here is the modified example from MATLAB help. Extract data from streamline and make animation
clc,clear
[x,y] = meshgrid(0:0.1:1,0:0.1:1);
u = x;
v = -y;
quiver(x,y,u,v)
startx = 0.1:0.1:1;
starty = ones(size(startx));
h1 = streamline(x,y,u,v,startx,starty);
xx = get(h1(2),'xdata'); % extract data for line2
yy = get(h1(2),'ydata');
h = line(xx(1),yy(1),'marker','o','markersize',15); % draw marker at start position
for i = 1:length(xx)
set(h,'xdata',xx(i),'ydata',yy(i)) % change marker position
pause(0.05)
end

Image Analyst
Image Analyst 2020년 6월 14일
If you want a movie, like an mp4 or avi video file, see my attached demo.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by