Creating Random Vector with Set intervals

2 views (last 30 days)
Chelles Rees
Chelles Rees on 9 Nov 2019
Edited: Chelles Rees on 9 Nov 2019
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

Answers (1)

David Hill
David Hill on 9 Nov 2019
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 Comment
Chelles Rees
Chelles Rees on 9 Nov 2019
Edited: Chelles Rees on 9 Nov 2019
I need the vecors to be 10k, 20k, 30k long consectuviely until 100k

Sign in to comment.

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!