Create new array with repeated values (error k must be less than or equal to N)

3 次查看(过去 30 天)
Trying to create a new array with repeated values .. I tried randperm but can not , as k must be less than or equal to N
clearvars;
clc
org_thick=[.125 .15 .25 .5 1];
new_thick=org_thick(randperm(numel(org_thick),8));

回答(1 个)

Bruno Luong
Bruno Luong 2020-8-28
编辑:Bruno Luong 2020-8-28
new_thick = org_thick(randi(end,1,8))

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by