Clear Filters
Clear Filters

how can I fix this?

1 view (last 30 days)
frwmetric
frwmetric on 21 May 2013
here is a code to get the permutation of each rows of a matrix
a=[ 1 2 2
2 2 3];
for ii=1:size(a,1)
q(ii,:,:)=unique(perms(a(ii,:)),'rows');
end
out = reshape(q,[],size(a,2),1)
out =
1 2 2
2 2 3
2 1 2
2 3 2
2 2 1
3 2 2
but if consider this matrix
A=[0,0,0;2,2,1;3,0,0]
it gives an error
??? Assignment has more non-singleton rhs dimensions than non-singleton
subscripts
Why? and how can I fix it?

Accepted Answer

Matt J
Matt J on 21 May 2013
Edited: Matt J on 21 May 2013
One way,
q=cell(size(a,1),1);
for ii=1:size(a,1)
q{ii}=unique(perms(a(ii,:)),'rows');
end
out=cell2mat(q);

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!