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!