execute a block of code based on real time analog input
1 view (last 30 days)
Show older comments
Hey guys,
I am trying to to sychnronize EEG acquisition and visual stimulation so that they achieve time alignment. My EEG equipment can send analog signal through NI device. My thinking is as soon as matlab detected the real time analog signal using the data acquisition toolbox the visual stimulation starts. I've writen the visual stimulation, but I have no idea how to execute it based upon the real time analog input. I believe the next step should be for matlab to monitor the real time analog signal continuously. How can I do that, and how can I use it as an event trigger to execute code?
0 Comments
Answers (1)
Brahmadev
on 17 May 2024
As per my understanding, you would like a plot to update based on real-time data acquired from your NI device. You can read the data in chunks inside a while loop and update the plot between each read. You can refer to the following example that does exactly that:
The size of data read at once can be changed by editing the while loop and the plot can be refreshed faster or slower as per need.
Hope this helps!
0 Comments
See Also
Categories
Find more on Data Acquisition Toolbox Supported Hardware in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!