draworigandaligneddata.m
来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 28 行
M
28 行
% 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 + =
减小字号Ctrl + -
显示快捷键?