Mercurial > repos > public > sbplib
view +anim/setup_time_quantity_plot.m @ 73:a5fa3c2d0aa3
Fixed problem with cell2sparse for empty matrices.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 23 Nov 2015 15:48:58 +0100 |
parents | 942cb3c53a47 |
children | d0df12c03aac |
line wrap: on
line source
function [update_data, plot_handles] = setup_time_quantity_plot(yfun) default_arg('yfun',@(y)y); if isa(yfun,'function_handle') yfun = {yfun}; end t = []; for i = 1:length(yfun) plot_handles(i) = animatedline(); end axis_handle = gca; legend() function update(t_now,varargin) if ishandle(axis_handle) % t = [t t_now]; for j = 1:length(yfun) addpoints(plot_handles(j),t_now,yfun{j}(varargin{:})); end [t,~] = getpoints(plot_handles(1)); if t(1) < t(end) xlim([t(1) t(end)]); end end end update_data = @update; end