Creating Random Vector with Set intervals

조회 수: 10 (최근 30일)
Chelles Rees
Chelles Rees 2019년 11월 9일
편집: Chelles Rees 2019년 11월 9일
I cant seem to ceate a random vector from 1-10k then 1-20k then 1-30k consectuively until 100k logging different values.
Here is the code I have so far,
inc=[10000 20000 30000 40000 50000 60000 70000 80000 90000 100000];
for l=1:length(inc) %creating a loop to go through the 10 values of inc
vec1 = randi(1,inc(l)); %geenrating random vector from 1-respective value of inc
any help would be appreciated

답변 (1개)

David Hill
David Hill 2019년 11월 9일
How long do you want the vectors to be? Why not make a matrix where each row has the vectors?
M=zeros(10);
for i=1:10
M(i,:)=randi(10000*i,[1,10]);
end
  댓글 수: 1
Chelles Rees
Chelles Rees 2019년 11월 9일
편집: Chelles Rees 2019년 11월 9일
I need the vecors to be 10k, 20k, 30k long consectuviely until 100k

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by