how to randomly choose some values from specific variable
1 次查看(过去 30 天)
显示 更早的评论
consider a=[6 5 4 3 6 4 2 1]
i want some values from variable 'a' say[4 3 2]or 20% of variable a
0 个评论
回答(1 个)
James Tursa
2015-6-15
编辑:James Tursa
2015-6-15
E.g., if you want only a subset of your vector:
k = number of values you want; % Must be <= numel(a)
p = randperm(numel(a),k);
b = a(p);
If you want a sample that could include repeats, e.g.,
k = number of values you want;
p = randi(numel(a),1,k);
b = a(p);
2 个评论
Image Analyst
2015-6-15
OK -- you didn't say anything about "s" or a 2D matrix, but I think you should mark it "Accepted" anyway, to give James reputation points.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!