Execute same .m multiples times in parallel
이전 댓글 표시
I have a script that generate images based on a random float. To generate the number, i use the following:
timeVals = strsplit(sprintf('%.9f',now),'.');
rng(str2double(timeVals{2}))
One problem is that the generation of the image takes a lot of time and i need a huge dataset, so i want to execute the same script to get it faster.
- It's possible to execute the same .m multiples times in parallel?.
- It's correct how the random numbers are generated in case that the step 1 could be possible?
Thanks in advance
댓글 수: 1
KSSV
2022년 10월 31일
Generation of the image? Where are you generating image?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Random Number Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!