Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to do parallel operation in Matlab?

Status
Not open for further replies.

davyzhu

Advanced Member level 1
Joined
May 23, 2004
Messages
494
Helped
5
Reputation
10
Reaction score
2
Trophy points
1,298
Location
oriental
Activity points
4,436
Hi all,

Is Matlab support parallel operation?

For example,
Most of the code in Matlab is serial operation:
B=A;
C=B;
that equal to C=A;.

But if it support parallel operation. So C~=A.

Any suggestions will be appreciated!

Best regards,
Davy
 

davyzhu said:
But if it support parallel operation. So C~=A.

I don't get this line, can u illustrate it more ?
 

eng semi wrote:
I don't get this line, can u illustrate it more ?
This means that C will not be assigned the value of A, else it will be assigned the value of B & B will get the value of A.
Thats correct for parallel software, but matlab is a sequential platform.
u can use simulink t exploit parallelism
if u need parallelism to convert ur code to vhdl u can use a software accelchip
 

For I want to test the hardware parallelism in Matlab, so the work would like something in Verilog listed below:

always@
B<=A;
C<=B;

Is Matlab language support this feature?

Best regards,
Davy
 

as far as i knew, it is very difficult or not possible to do with matlab. as the purpose of the software was not towards what u mentioned abt. but, they have introduced off late in the matlab 7 release, "distributed computing toolbox", which allows cluster computing. may be u cud try 2 do something with it. and similar manner, we "could" expect them to exploit the parallelism so that it becomes even more powerful...

/cedance
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top