⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 interpolatemv.m

📁 Continuous Profile Models (CPM) Matlab Toolbox.
💻 M
字号:
% function newVals = interpolateMV(vals)%% interpolate over the gaps from the DP alignment% currently uses the built in interp1q (quick linear interp)function newVals = interpolateMV(vals,gapSymbol)%extrapMethod = 'linear';%extrapVal = 0;newVals = zeros(size(vals));for seq=1:2  temp=vals(seq,:);  %find gapSymbols  gapInd = find((temp==gapSymbol)==1);  knownInd = find((temp~=gapSymbol)==1);  %interpVals = interp1(knownInd,vals(knownInd),gapInd,extrapMethod,extrapVal);  interpVals = ...      interp1q(knownInd',temp(knownInd)',gapInd');  temp(gapInd)=interpVals;    newVals(seq,:)=temp;    if (0)  %for debugging    if (seq==1)      original=d1;    elseif (seq==2)      original=d2;    end    figure,    subplot(3,1,1), plot(original); title('original data');    subplot(3,1,2), plot(vals(seq,:)); title('aligned/missing');    subplot(3,1,3), plot(temp); title('aligned/interp');  endend

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -