📄 combinemaps.m
字号:
% combineMaps - returns the sum of a vector of maps.%% resultMap = combineMaps(maps,label)% Adds the data fields in the maps vactor and returns% the result as a map with label as the label.%% See also dataStructures.% This file is part of the SaliencyToolbox - Copyright (C) 2006-2007% by Dirk B. Walther and the California Institute of Technology.% See the enclosed LICENSE.TXT document for the license agreement. % More information about this project is available at: % http://www.saliencytoolbox.netfunction result = combineMaps(maps,label)result = maps(1);result.label = label;lm = length(maps);result.data = zeros(size(maps(1).data));for m = 1:lm result.data = result.data + maps(m).data;endresult.date = timeString;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -