我有一个连接到加速计传感器的STM32创建的.txt文件。 这个文件是Ascii文件(probabily 8bit)
我尝试使用
在Matlab上进行可视化 ZZ = load('000_LOG.TXT', '-ascii')
Error using load
Unknown text on line number 1 of ASCII file 000_LOG.TXT
所以我试过
zx = load ('000_LOG.TXT')
Error using load
Unknown text on line number 1 of ASCII file 000_LOG.TXT
所以我在阅读这篇文章后试了importing ASCII file to Matlab
fid = fopen ('000_LOG.TXT');
>> myData = fread ('fid')
Error using fread
Invalid file identifier. Use fopen to generate a
valid file identifier.
命令“importdata”有效,但我无法转换为dec
Xw = importdata ('000_LOG.TXT')
Xw =
'|}}|}}|~}|~}|~}|}~|}~}}~}}~}}}}}~}}~}}|}}}}|}|}}~}}}}}}}|€}|}|€}}€}|...'
实际上
Wx = bin2dec(Xw)
Error using bin2dec (line 35)
Binary string must be 52 bits or less.
这是dropbox上文件.txt的链接 https://www.dropbox.com/l/s/mDoDk5puIpZaEdLth4w0Lr
感谢您的支持