Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试让我的 MATLAB 代码加载和解析某些文本文件以在 FreeMat 中工作,并且在第一方遇到了困难。
该文件如下所示:
1110000 1001100 1000011 0101010 0100101 0011001 0010110 7-3-1 设计数 = 1 |Aut|= 168 的设计数为 1
1110000
1001100
1000011
0101010
0100101
0011001
0010110
7-3-1 设计数 = 1 |Aut|= 168 的设计数为 1
FreeMat 似乎不知道 textread.m 并且调用 load 和 dlmread 也没有完成这项工作。
看起来textscan/textread尚未在 FreeMat 中实现。fgetline您可以改为使用(相当于fgets在 MATLAB 中)逐行读取文件。
textscan
textread
fgetline
fgets
这是FreeMat中可用的IO 函数列表