Borrar filtros
Borrar filtros

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

4 visualizaciones (últimos 30 días)
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));

Respuestas (1)

Bruno Luong
Bruno Luong el 28 de Ag. de 2020
Editada: Bruno Luong el 28 de Ag. de 2020
new_thick = org_thick(randi(end,1,8))

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by