I wanted to send data from mbed to matlab. I'm running RPC_serial on the mbed and I can communicate with it using TeraTerm. My Matlab m file has only 3 lines...
import mbed.*
mymbed= SerialRPC('COM3',9600);
myled =DigitalOut(mymbed, LED1);
When I run the m file on matlab it errors with
??? No method 'mbed.SerialRPC' with matching signature found........
I'm looking in the matlab library for mbed and I cant see the constructor for SerialRPC so it looks as if matlab is right.
Two possibilities exist, among others
One, I dont know where to look for the constructor and so I cant add it to the matlab path.
Two, I'm not experienced enough with matlab/programming to understand how the visibility of the library affects things.
Where would the constructor for the SerialRPC be found ?
I wanted to send data from mbed to matlab. I'm running RPC_serial on the mbed and I can communicate with it using TeraTerm. My Matlab m file has only 3 lines... import mbed.* mymbed= SerialRPC('COM3',9600); myled =DigitalOut(mymbed, LED1);
When I run the m file on matlab it errors with ??? No method 'mbed.SerialRPC' with matching signature found........ I'm looking in the matlab library for mbed and I cant see the constructor for SerialRPC so it looks as if matlab is right. Two possibilities exist, among others One, I dont know where to look for the constructor and so I cant add it to the matlab path. Two, I'm not experienced enough with matlab/programming to understand how the visibility of the library affects things.
Where would the constructor for the SerialRPC be found ?