Can we use 'parfor' in user defined function?
5 views (last 30 days)
Show older comments
Mohsin Shah
on 6 Aug 2017
Commented: Mohsin Shah
on 7 Aug 2017
Hello, Can we use 'parfor' in used defined functions? I want to use parfor in user defined functions to improve the speed of my code but its not working. Is there any way we can use it?
3 Comments
Walter Roberson
on 6 Aug 2017
That use of parfor is not permitted because the output would depend upon which iteration ran last. You need either assign to an indexed variable or you need to use a reduction variable (for example totaling the values of the individual iterations)
Accepted Answer
Walter Roberson
on 6 Aug 2017
Yes, for sure you can, provided that you have the parallel computing toolbox installed and licensed
4 Comments
Walter Roberson
on 7 Aug 2017
function y = function_name(p)
t = 0;
parfor k = 1 : length(p)
t = t + p(k);
end
y = t;
end
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!