Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Matlab 的新手,我只想知道 Matlab 是否允许我们上传 swf 文件。如果没有,我知道可以上传电影(例如 AVI)。我可以上传电影并在播放时以一定的速度和动作将其移动到屏幕的不同点吗?我需要一个特定的工具箱吗?
谢谢哟哟!!!
我能想到的唯一方法是在轴对象中显示图像/电影,然后在包含的图形中移动轴。
f = figure(); a = axes('Units', 'Normalized', 'Position', [0 .5 .1 .1]); while true pos = get(a,'Position'); pos(1) = mod(pos(1) + .01, 1); set(a, 'Position', pos); pause(.01); drawnow; end
要使其与电影一起使用,您需要在轴内绘制电影