Filter löschen
Filter löschen

Writing matrix in text file to serial port

5 Ansichten (letzte 30 Tage)
Anjani Chaudhary
Anjani Chaudhary am 14 Sep. 2019
Beantwortet: Walter Roberson am 14 Sep. 2019
I have matlab 2016b version. I am trying to find my com port using seriallist or getAvailableComPort function. But its saying function /variable not defined. M not bale to use many other functions like readmatrix, serialport etc What could be the reason? Help appreciated.
Thanks.
A

Antworten (1)

Walter Roberson
Walter Roberson am 14 Sep. 2019
The reason is that those routines do not exist until R2018b and r2019a.
Furthermore, readmatrix and writematrix are for dealing with file io not for serial ports.
You should be using instrfind to look for serial ports. Use serial() to construct a serial port object. fopen() it after configuration. fprintf() to send numeric values as text.
Be careful: fprintf outputs down the columns. If you ask to fprintf
1 2 3
4 5 6
Then it will output in the order 1 4 2 5 3 6. The trick is to transpose() 2d matrices

Kategorien

Mehr zu Data Import and Export finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by