Reputation: 45
I’m currently using Matlab to acquire data from an eye tracker using a specific toolbox. After that, the stream of data has to be slightly processed and sent to a C# application (.NET framework). The entire data flow has to be as much real-time as possible (data acquired and processed in no more than 30 ms).
I need a way to interface the data acquired from Matlab and the C# application. I was thinking to use a text file, but in this case there should exist a synchronization between the writing and reading operation. Are there any methods to synchronize a Matlab I/O operation with a C# I/O operation?
Upvotes: 3
Views: 713
Reputation: 1081
I can suggest three approaches:
Upvotes: 1