I have a C++ Windows Program and I want to convert and visualize some data from this C++ app in an existing Matlab Program.
Currently I am writing the data from the C++ app into files. At the same time the Matlab app reads the files and processes the data. (polling) It basically works but I am running in performance troubles when the data load gets to high.
What is the best solution to transfer data between this programs? I am thinking of a kind of message queue or socket interface.