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

📄 cellmax.m

📁 轨迹聚类工具箱及其相关说明和文章(台风路径分类等)。如有问题可与wyljess@126.com联系
💻 M
字号:
function mx = cellmax(x)
%CELLMAX  Calculate max of each cell
%   MAX = CELLMAX(X)

% Scott J Gaffney   11 September 2001
% Department of Information and Computer Science
% University of California, Irvine.

PROGNAME = 'cellmax';
if (~nargin)
  help(PROGNAME);
  return;
end


sz = size(x);
if (sz(1)~=1 & sz(2)~=1)
  error('CELLMAX only supports vector-sized cell arrays');
end

% set the size of the output array
mx=[];
a = nan;
for i=1:length(x)
  if (~isempty(x{i}))
    mx = a(ones(length(x),size(x{i},2))); % set to NaNs
    break;
  end
end
if (isempty(mx))  % if empty then just return
  return;
end

for i=1:length(x)
  if (~isempty(x{i}))
    mx(i,:) = max(x{i},[],1);
  end
end

⌨️ 快捷键说明

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