save/assign variables in parfor loop
13 views (last 30 days)
Show older comments
Hello, Matlab experts.
I would like to do imaging processing with parfor iteration. Here is my simple example code. I wonder that how I can save/store variable resulting from the function in parfor loop. Thank you very much for your help in advance.
- *
a; % 128x128 image
b; % 128x128 image
result=zeros(128,128,2);
parfor row=1:128
for column=1:128
[plus,minus] = myfun(a(row, column), b(row,column));
% myfun is "a-b" and "a+b", return two outputs
result(row, column, 1)= plus;
result(row, column, 2)= minus;
end
end
figure; imagesc(result(:,:,1));
figure; imagesc(result(:,:,2));* *
0 Comments
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!