我用白色轮廓线制作了一个轮廓图。
我使用'LineColor', 'white'
但在电影中,白线在每个图像之后传播而不是重绘。图像本身的颜色会自动重绘。我究竟做错了什么?
此外,在查看图像时,它在左上角显示得很小。之前的类似脚本不会导致此问题。有谁知道为什么?
% Create movie
nFrames = 893; % Number of frames
for k = 1:nFrames % Create movie
% Eqdconic script
% Define figure and axes
fg1 = figure(1);
axesm('MapProjection','eqdconic', 'MapParallels', [], 'MapLatLimit',[-79.625 -59.625],'MapLonLimit',[190.625 250.625])
framem on; gridm on; mlabel on; plabel on; hold all;
% Plot data
frame = dataSST_movie(:,:,k);
image = contourfm(Y,X,frame, 'LineColor', 'white'); % Change contour lines to white
mov(k) = getframe(gcf);
end
close(gcf)
% % Save as AVI file
movie2avi(mov, 'SST_20110101to20130611_0.25grid.avi', 'compression', 'none', 'fps', 4);
这image = contourfm()
部分就是我要说的;redraw
我需要使用一些类似的命令吗?