フィルターのクリア

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

4 ビュー (過去 30 日間)
Ali Tawfik
Ali Tawfik 2020 年 8 月 28 日
コメント済み: Rik 2020 年 8 月 28 日
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 Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by