0

我用白色轮廓线制作了一个轮廓图。

我使用'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我需要使用一些类似的命令吗?

4

1 回答 1

0

之前只使用 clf end。至于尺寸问题,请检查 MapLatLimit 和 MapLonLimit。如果它们是正确的,它应该可以工作。

于 2013-07-15T15:10:00.877 回答