如何将元胞数组传递给完整文件
How to pass a cell array to fullfile
如何传递像
这样的元胞数组
pathParts = {'D:', 'foo', 'matic'}
到fullfile
获取完整路径(即D:\foo\matic
)?
如下:
fullfile(pathParts{:})
通过对元胞数组进行冒号索引,MATLAB 将 return 一个 comma separated list。然后您可以轻松地将其传递给其他函数。
如何传递像
这样的元胞数组pathParts = {'D:', 'foo', 'matic'}
到fullfile
获取完整路径(即D:\foo\matic
)?
如下:
fullfile(pathParts{:})
通过对元胞数组进行冒号索引,MATLAB 将 return 一个 comma separated list。然后您可以轻松地将其传递给其他函数。