Filter löschen
Filter löschen

How do you preallocate an array of FevalFutures?

7 Ansichten (letzte 30 Tage)
Chester Koh
Chester Koh am 23 Okt. 2023
Beantwortet: Walter Roberson am 23 Okt. 2023
I want to run many experiments using parfeval. How can I preallocate an array of the futures? The sample below results in an error saying the constructor needs more arguments.
experiments = parallel.FevalFuture(100)
for i = 1:100
experiments(i) = parfeval(@magic, 1, 5);
end

Antworten (1)

Walter Roberson
Walter Roberson am 23 Okt. 2023
Loop backwards.
clear experiments
for i = 10:-1:1
experiments(i) = parfeval(@magic, 1, 5);
end
experiments

Tags

Produkte


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by