Create new array with repeated values (error k must be less than or equal to N)
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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));
Antworten (1)
Bruno Luong
am 28 Aug. 2020
Bearbeitet: Bruno Luong
am 28 Aug. 2020
new_thick = org_thick(randi(end,1,8))
0 Kommentare
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!