Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get data from a server. Right now, I am polling the server every couple of seconds for the current values. I am wondering if it is possible to have Matlab get the data in real-time or if I am stuck with my current implementation. Has anyone done anything like this? If so, maybe you can tell me how you got started with it.

Any help would be greatly appreciated. Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

If you're on Windows, you can listen to ActiveX (COM) events using REGISTEREVENT. You would need to provide an ActiveX control (servers might work too, I'm not sure) that triggers the event, which would invoke your MATLAB function.

share|improve this answer
Thank you for the suggestion! I'm not very familiar with using ActiveX, but would this be able to interrupt a Matlab script that is already running? – Shaka Oct 1 '09 at 19:11
I doubt it. I think callbacks only run if nothing else is running at the time. Another approach might be to have the ActiveX object harvest the data in a thread, then make it available to MATLAB via a function. This would be sort of like your current polling solution, but the thread would be under your control so you ensure it's fast enough. – mtrw Oct 1 '09 at 20:25

Matlab timers work well for periodic events. You'll want to be careful about making sure your function executes in less time than the periodicity of the timer, though settings for the behavior when that doesn't hold do exist.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.