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

📄 join.m

📁 Video IO toolbox for matlab. 用directshow做的
💻 M
字号:
function s = join(d,varargin)%S=JOIN(D,L) joins a cell array of strings L by inserting string D in%            between each element of L.  Meant to work roughly like the%            PERL join function (but without any fancy regular expression%            support).  L may be any recursive combination of a list %            of strings and a cell array of lists.%%Examples:%    % For any of the following examples,%    >> join('_', {'this', 'is', 'a', 'string'} )%    >> join('_', 'this', 'is', 'a', 'string' )%    >> join('_', {'this', 'is'}, 'a', 'string' )%    >> join('_', {{'this', 'is'}, 'a'}, 'string' )%    >> join('_', 'this', {'is', 'a', 'string'} )%%    % ...the result is:%    ans = %        'this_is_a_string'%%Copyright (c) 2006 Gerald Dalley%See "MIT.txt" in the installation directory for licensing details (especially%when using this library on GNU/Linux). if (isempty(varargin)),     s = '';else    if (iscell(varargin{1}))        s = join(d, varargin{1}{:});    else        s = varargin{1};    end        for ss = 2:length(varargin)        s = [s d join(d, varargin{ss})]; %#ok<AGROW>    endend

⌨️ 快捷键说明

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