DEALCELL

バージョン 1.1.0.1 (2.06 KB) 作成者: Jiro Doke
Deals cell elements to variables (similar to DEAL)
ダウンロード: 2K
更新 2016/9/1

ライセンスの表示

DEALCELL Deals cell elements to variables
[A1,A2,A3,...] = DEALCELL(X) assigns elements of cell array X to output lists. It is the same as A1=X{1}, A2=X{2}, A3=X{3}, ..., AN=X{N}. There can be any number of variables (up to the total number of elements in X) on the left hand side. If there are fewer LHS variables than the total number of elements in X, then only the first N elements of X are assigned.

DEALCELL works similarly to DEAL, except that it is specialized for cell array inputs and that the cell array does not have to be passed in as comma-separated lists.

This is a very short code (0 lines), and for cell array dealing, it is faster than DEAL.

The code:
function varargout = dealcell(varargout)

Helpful error messages are sacrificed for efficiency. To enable better error-checking, uncomment the Error Checking section below.

Example: (speed comparison with DEAL)
sys={'hello'; 'yes'; 'no'; 'goodbye'};
tic; % DEALCELL
for id = 1:100000
[a1,b1,c1,d1] = dealcell(sys);
end
fprintf('\nDEALCELL: %1.3f sec (%d iterations)\n', toc, id);

tic; % DEAL
for id = 1:100000
[a2,b2,c2,d2] = deal(sys{:});
end
fprintf('DEAL : %1.3f sec (%d iterations)\n\n', toc, id);
isequal({a1,b1,c1,d1},{a2,b2,c2,d2})

See also DEAL, LISTS, PAREN.

***
This is a simplification to DEAL, to be used with cell arrays specifically. Comments on its usefulness are welcome. Thanks.

引用

Jiro Doke (2024). DEALCELL (https://www.mathworks.com/matlabcentral/fileexchange/10162-dealcell), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R13
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.1

Updated license

1.1.0.0

License update

1.0.0.0

Modify help text