필터 지우기
필터 지우기

How can we execute two tasks parallely using PCT in MATLAB on two different computers connected by LAN?

조회 수: 3 (최근 30일)
Hello Everybody,
I just want to execute two task parallely on different computers connected by LAN using PCT in matlab. Suppose i want to execute one task like --
code 1---(Addition Task on one computer)
a = 5;
b = 10;
c = a + b;
code 2 --- (Multiplication Task on another computer)
a = 5;
b = 10;
c = a * b;
Please suggest me how is it possible ? To execute two task parallely so that i can apply this on BIGGER problems.
Thanks in Advance!!!!!

답변 (1개)

Vishal_R
Vishal_R 2014년 6월 16일
편집: Vishal_R 2014년 6월 16일
Using Parallel computing toolbox, you can run as many workers as you like( depends on the # of cores in your machine). All these workers can run parallely on differnt cores.
You can mimic this behaviour on differnt machines usin Distributed computing toolbox ox.

카테고리

Help CenterFile Exchange에서 MATLAB Parallel Server에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by