Using parallel computing for two for loops
조회 수: 12 (최근 30일)
이전 댓글 표시
In my program(in matlab) I have two for loops and I want to use parallel computing for these loops:
#loop a
for i=1:120000
using var2(from the previous iteration (loop b)) and do something
and make var1
end;
#loop b
for j=1:120000
using var1(from the previous iteration(loop a)) and do something
and make var2
end;
my computer is dual core.can anyone help me?
댓글 수: 0
채택된 답변
Matt J
2013년 9월 28일
Seems like they should be combined into 1 loop
parfor i=1:120000
var1_new = (use var2)
var2_new = (use var1)
var1=var1_new;
var2=var2_new;
end
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!