I know Cliff has been working on a 64bit version but it could be quite some time. One work-around he gave me was to use Matlab's own intrinsic commands to control a serial port
http://www.mathworks.com/help/matlab/ref/serial.html
It should be pretty straight forward to open the port, send Vxm commands and then close the port.
In your case the settings you will need are
Port: Com7
Baud: 9600
Data-Bits: 8
Parity: None
Stop-Bits: 1
From there if you send a capital "V" then wait 100ms and read back the port you should get back one of the following characters. "R,J,B,b"
From there you should be able to send VXM commands and have it react.
(Oh and make sure COSMOS is closed when you try to open the port from Matlab or you will not be able to take control of the port)