Creating Random Vector with Set intervals

2 visualizzazioni (ultimi 30 giorni)
Chelles Rees
Chelles Rees il 9 Nov 2019
Modificato: Chelles Rees il 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

Risposte (1)

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

Accedi per commentare.

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by