Converting mat files to daq format
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello There
We would like to convert mat files, or indeed matlab variables in the workspace, to the daq format.
what we are looking for is the inverse operation of the daqread.m command in matlab
Thanks in advance!!
0 Commenti
Risposte (1)
Keegan Carvalho
il 27 Apr 2020
I believe daq files are like integer, characters or signed integer files. So you can try converting your variable to an int32 as follows:
x % x is variable
y=int32(x);
Therefore y is a signed integer type variable in daq format.
Hope this helps!
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Acquisition Toolbox Supported Hardware in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!