필터 지우기
필터 지우기

Randomize a vector with letters making a N back test

조회 수: 1 (최근 30일)
basma awad
basma awad 2021년 8월 30일
답변: Jan 2021년 8월 30일
Hi,
I wish to create a random letter vector that has 150 element with only the letters from A to J, which i have done here:
s='A':'J'; % Generate the Letters from A to J
str=s(randi(numel(s),150,1))';
But i wish that some of the every 3rd element after 1 element is identical. For eksample
[A G J B G H D I H C]
Thank u

채택된 답변

Jan
Jan 2021년 8월 30일
s = 'A':'J';
str = s(randi(numel(s), 1, 150));
idx = 5:4:numel(str);
str(idx) = str(idx - 3)
str = 'FBJGBBHEBCICCJEFJFJDFDECDHAGHBAIBJDBJCEDCHCAHFDIFCHDCFIFFDFHDBFHBFEIFEJFEFACFHIAHICIIHEHHABHADJCDFCAFBIGBEIJEDIIDFEDFDCGDFJHFJHFJFCHFDBDDBDCBDJADAHAAE'

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by