Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I notify a MATLAB object of an event in a Java object?

Tags:

For simplicity, say I have a Java object which generates a random number at randomly spaced time intervals. I wish to have a MATLAB object notified every time one of these random numbers is generated (so that the MATLAB object can then perform some task on the data).

How can I implement something like this? How can I have the Java object notify a MATLAB object that something has happened?

P.S. I am a strong programmer in MATLAB but fairly new to Java.

like image 983
kmccoy Avatar asked Nov 27 '10 13:11

kmccoy


1 Answers

I don't know, with java how to communicate with Matlab. But you should use Observable objects. And implements yours. Observer will send "notifications" that something has changed when observable object notify it to the EDT.

That's called Observable pattern.

Maybe take a look : https://docs.oracle.com/javase/7/docs/api/java/util/Observer.html

Best regards.

like image 176
A.DREY Avatar answered Oct 18 '22 07:10

A.DREY