Is it possible to copy the elements of a matrix to a set of variable names ?
1 回表示 (過去 30 日間)
古いコメントを表示
Given is a matrix A of size [1x6]. What I want is to copy the elements of A to a set of variable names [a,b,c,d,e,f], so that
a = A(1);
b= A(2)
a.s.o.
I tried
[a,b,c,d,e,f] = deal(A);
But this copies not the elements but the hole matrix A into each variable.
Any help is much appreciated.
0 件のコメント
採用された回答
Walter Roberson
2013 年 3 月 13 日
編集済み: Walter Roberson
2013 年 3 月 13 日
Acell = num2cell(A);
[a,b,c,d,e,f] = deal(Acell{:}); %older MATLAB
[a,b,c,d,e,f] = Acell{:}; %newer MATLAB
その他の回答 (1 件)
Azzi Abdelmalek
2013 年 3 月 13 日
編集済み: Azzi Abdelmalek
2013 年 3 月 13 日
A=rand(1,6)
s='abcdef'
for k=1:numel(s)
assignin('base',s(k),A(k))
end
6 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!