Creating Random Vector with Set intervals
조회 수: 10 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!