Fill matrix with random letters and numbers

8 Ansichten (letzte 30 Tage)
Frank
Frank am 10 Aug. 2011
In MATLAB,I need to create a 36 by 20 matrix and then fill column by column, with a randomized selection from the characters A through Z and 0 through 9.
So each column will have the same characters but in a randomized order.
Your hints and suggestions are welcome.
Thank you.

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 10 Aug. 2011
A9=['A':'Z' '0':'9';];
Data=zeros(length(A9),20);
for k=1:size(Data,2)
Data(:,k)=randperm(length(A9));
end
Data=A9(Data)
  17 Kommentare
Paulo Silva
Paulo Silva am 12 Aug. 2011
No problem Frank, just in case you don't need the excel file you can just save the variable Data to a mat file
save('MyData','Data')
and load it when you need to use it
load('MyData')
the variable appears again on your workspace with the same name and contents.
Frank
Frank am 12 Aug. 2011
Thank you again!!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by