Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
John, Fabian
cosa-tools-matlab
Commits
f76fed8a
Commit
f76fed8a
authored
Jun 17, 2021
by
John, Fabian
Browse files
added example to demonstrate usage of save_as_gif
parent
4fdabef2
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/save_as_gif_exmpl.m
0 → 100644
View file @
f76fed8a
addpath("../lib");
h = figure(1);
plot(1:10, zeros(1,10));
ylim([0,21]);
save_as_gif('test.gif', h, 1);
for i = 1:20
plot(1:10, i*ones(1,10));
ylim([0,21]);
save_as_gif('test.gif', h, 0);
end
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment