From: siew tee kong on
Hello

I have a programm called Hiteczang and i would like Matlab to communicate with Hiteczang. Matlab should be able to read values from Hiteczang and vice-versa.

Can someone please suggest how i can make this possible?

TQ
From: dpb on
siew tee kong wrote:
> Hello
>
> I have a programm called Hiteczang and i would like Matlab to
> communicate with Hiteczang. Matlab should be able to read values from
> Hiteczang and vice-versa.
>
> Can someone please suggest how i can make this possible?

Do you have source for this external program? If so, you could make mex
it and arrange it that way.

Failing that, it's back to other forms of interprocess communication
such as redirecting input/output from/to disk files, etc.

What is possible depends very heavily on how the code is written and
what needs to be passed.

--
From: Ashish Uthama on
siew tee kong,

It would help CSSMers if you posted more info about this program and its
capabilities. http://www.hitec-zang.de/en.html didnt provide too much info.

You could skim through the external interfaces available in MATLAB and
pick something that matches your tools interface too:

http://www.mathworks.com/access/helpdesk/help/techdoc/matlab_external/bp_kqh7.html
Or please paste this in the MATLAB command window:
web([docroot,'/techdoc/matlab_external/bp_kqh7.html'])


The simplest might be to use data files (I would expect your tool to at
least have the capability to dump out data files).