saveAnimation(t,x,P​)

Generate and save animation as video file
74 Downloads
Aktualisiert 11. Dez 2015

Lizenz anzeigen

The user passes time and state data to the function, as well as a handle for plotting the system at a single state and time. SaveAnimation then marches through time at the desired frame rate, generating a mp4 animation as it goes.
%saveAnimation(t,x,P)
%
%FUNCTION:
% saveAnimation creates a mp4 video file, given data and a draw function.
%
%INPUTS:
% t = [1xM] vector of times, Must be monotonic: t(k) < t(k+1)
% x = [NxM] matrix of states, corresponding to times in t
% P = animation parameter struct, with fields:
% .plotFunc = @(t,x) = function handle to create a plot
% t = a scalar time
% x = [Nx1] state vector
% .figNum = (optional) figure number for plotting. Default = 1000.
% .frameRate = desired frame rate for the animation (real time)
% .fileName = desired file name (do not include extension)
%
%OUTPUTS:
% Animation file based on data in t and x.
%
%NOTES:
%
% The animation works by looping through every element in the input
% matricies, assuming that they are being presented at the desired frame
% rate.
%

Zitieren als

Matthew Kelly (2024). saveAnimation(t,x,P) (https://www.mathworks.com/matlabcentral/fileexchange/54436-saveanimation-t-x-p), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2015a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.1.0.0

Improved description.

1.0.0.0