How to make elements in an array permanant
조회 수: 4 (최근 30일)
이전 댓글 표시
I'm creating function that has a random array using randperm. Is there a way to fix the order of the elements in the array even when I run it several times? Every time I use the function, a new array will be produced. I want the function to be so that the randperm will only run once no matter how many times I click 'run'. Thanks
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 3월 27일
You can save your array in a mat file
댓글 수: 1
Azzi Abdelmalek
2013년 3월 27일
편집: Azzi Abdelmalek
2013년 3월 27일
Or
stream = RandStream('twister','Seed',0); % 'twister' is a generator
randperm(stream,5)
추가 답변 (1개)
James Tursa
2013년 3월 27일
You could fix the seed used every time so you get the same stream of random numbers with each trial. See the rng function:
댓글 수: 0
참고 항목
카테고리
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!