📄 draworigandaligneddata.m
字号:
% function drawOrigAndAlignedData(data,scaleAndTimes,useScaling);%% Draw the unaligned data, and the aligned data. If useScaling=1% then also include the scaling in the alignment.%% If the data is not scalar time series, then the dimensions are% collapsed to make it scalar.function drawOrigAndAlignedData(data,scaleAndTimes,useScaling);[numSamples numRealTime numBins]=size(data);data=sum(data,3);% split the axes upallAx = splitAxes(2,1,'',[0.04 0.02]);%% raw unaligned dataaxes(allAx{1}),plot(data(),'-+','MarkerSize',2);xlabel('Experimental Time Points');ylabel('Signal Intensity');keyboard;%% aligned datashowAlignedAll(G,data,scaleAndTimes,useScaling)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -