random pick cell array
3 views (last 30 days)
Show older comments
how to randomly picking in cell array? for example,i want to pick randomly one data in x.
x=[1;8;9;10;16]
0 Comments
Answers (1)
Paulo Silva
on 7 May 2011
x=[1;8;9;10;16]; %is one array not cell array
x(randi([1 numel(x)])) %show one random element of the array
0 Comments
See Also
Categories
Find more on Matrices and Arrays 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!