A={ 'ABCDE'
'ABCD'
'ABE'
'ABCDE'
'ABD'
'ABCD'
'ABCDE' };
N = numel(A);
for r = randperm(N,3)
A(r) = A{r}([2 1 3:end]);
end
or
for r = randperm(N,3)
A{r}(1:2) = A{r}([2 1]);
end
randperm(N,3) selects 3 random values from 1:N
then with indexing [2 1 3:end] we can swap first and second elements
1
hmofrad
On
If you do not want to have a for loop but instead have an extra data conversion step from cell to char and then from char back to cell, this would solve your problem:
N = numel(A);
r = randperm(N,3);
A = char(A);
A(r,[1,2]) = A(r,[2,1]);
A = cellstr(A);
A possible solution
or
randperm(N,3)
selects 3 random values from1:N
then with indexing
[2 1 3:end]
we can swap first and second elements