DaveG
DaveG

Reputation: 753

Matlab pass data to other thread

Is there a way to pass Matlab data to another Matlab thread? I'm importing data from C++ to Matlab and want to pass this data to another function, which loops permanently. C++ opens a new Matlab window, so variables can not be shared easily. One way would be to write the imported data to a file and read this file in the other loop, but this takes quite some time. Is there someone with a better solution?

Upvotes: 0

Views: 158

Answers (1)

user2271770
user2271770

Reputation:

The standard solution costs money: Parallel Computing Toolbox.

Upvotes: 1

Related Questions