getsamplesmat.m
来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 17 行
M
17 行
% function samplesMat = getSamplesMat(headerAbun,G,oneD)%% if oneD is provided and ~=0, overrides whatever number of bins is given in G% (useful when displaying results from expreiments with numBins>1% in which we reduce it to 1 so as to be able to visualizefunction samplesMat = getSamplesMat(headerAbun,G,oneD)numBins=G.numBins;if ~exist('oneD','var') || oneD~=0 numBins=G.numBinsendsamplesMat = reshape(cell2mat(headerAbun),... [numBins G.numRealTimes length(headerAbun)]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?