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

📄 quantizeallms.m

📁 Continuous Profile Models (CPM) Matlab Toolbox.
💻 M
字号:
% function qmz = quantizeAllMS(scans,header)%% Quantize mass spec data, and convert it into% a 2D matrix (scans,mz)%% scans and header can be 1D cell arrays, then qmz returned% will be a cell array result, one per cell array input.function qmz = quantizeAllMS(scans,header)qmz=cell(1,length(scans));numExp=length(scans);for ii=1:numExp    numScanHeaders=size(header{ii},1);    thisRange=1:numScanHeaders;    tmpScale = 1;    qmz{ii}=quantizeMS(scans{ii},header{ii},thisRange,tmpScale);end

⌨️ 快捷键说明

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