错误图片:
我正在使用MATLAB运行基于鼠标记录的LFP的行为分析GUI。但是,当我加载屏幕时,会得到一个大的蓝色方块,覆盖了大部分图,如附图所示。其下的数据是完整的。这是发生在这一行:
% Plot the spectrogram:
handles.LFPfig = axes('Position',[.05 .13 .9 .75],'visible','off','Parent',handles.f);
colormap parula
axes(handles.LFPfig);
psd_axes_pos = handles.LFPfig.Position;
max_LFP_y = 148; % 148 = 15 Hz
imagesc(handles.D.pX,( handles.D.F(1:max_LFP_y) ),10*log10(abs(handles.D.P(1:max_LFP_y,:))));
set(handles.LFPfig,'ydir','normal','visible','off')
imagesc(handles.D.pX,( handles.D.F(1:max_LFP_y)),10*log10(abs(handles.D.P(1:max_LFP_y,:))));
出什么问题了?