-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimatingplotmeso.m
76 lines (42 loc) · 931 Bytes
/
animatingplotmeso.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
t = 0:0.05:7.0;
for k = 1:length(t)
plot(x1(k),y1(k))
hold on
plot(x2(k),y2(k))
hold on
plot(x1(1:k),y1(1:k))
hold on
plot(x2(1:k),y2(1:k))
hold on
plot(x3(1:k),y3(1:k))
hold on
plot(x4(1:k),y4(1:k))
hold on
plot(x5(1:k),y5(1:k))
hold on
plot(x6(1:k),y6(1:k))
hold on
plot(x7(1:k),y7(1:k))
xlabel('List of pin stretch steps')
ylabel('Instantaneous shape parameter')
pause(0.08)
if k ~= length(t)
clf
end
end
disp('DONE!')
% myVideo = VideoWriter('Mesocellplot'); %open video file
% myVideo.FrameRate = 5;
% open(myVideo)
%
% frame = getframe(gcf); %get frame
% writeVideo(myVideo, frame);
%
%
% pause(0.01)
% frame = getframe(gcf); %get frame
% writeVideo(myVideo, frame);
%
% vidObj = VideoWriter('mesoplot.avi');
% vidObj.FrameRate = 1;
% open(vidObj);