Clear Filters
Clear Filters

How to communicate between 32 bit Matlab and 64 bit Matlab?

1 view (last 30 days)
Hi Eveyone! I have Microsoft Kinect code works with 64 bit Matlab and another device works with just 32 bit Matlab. I have to use the data from 32 bit and introduce it to 64 bit Matlab(either on the same computer or not) and process. So I am basically looking for a solution. I will be transferring my data simultaneously from 32 bit Matlab to 64 Matlab. I am aware of that will be a delay but I can omit it by start recording late. I am looking for your help.
Future thanks!

Answers (2)

ES
ES on 30 May 2017
What do you mean by "Communicate"?
You can let the first instance (32-bit) write the data to a file (mat/xls) and the second instance (64-bit) use this file.
  1 Comment
Evrim Yilmaz
Evrim Yilmaz on 30 May 2017
I mean getting a struct data from 32 bit Matlab which changes every millisecond and use it in a equation on 64 bit Matlab. Your way exporting the data to a mat/xls and importing back to 64 bit matlab can be a way. (I will be glad if you can share more info) but I actually looking for more accurate, quicker way.

Sign in to comment.


Jan
Jan on 30 May 2017
Every millisecond? This will be very hard.
You can try FEX: sharedmatrix. A commonly used memory mapped file might work also: memmapfile .
Nevertheless, milliseconds are short and a reliably synchronized process will be hard to establish.

Categories

Find more on Instrument Connection and Communication 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!