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.
我得到了一些数据文件(.bin),我不知道里面的结构是什么。我尝试用“fread”阅读它,但我需要自己定义尺寸(列数和行数)。其实我试过但没能认出来,因为数字不规则。有没有人知道如何知道这些文件的原始尺寸?
你可以不使用语法:
A = fread(fileID)将二进制文件中的数据读取到列向量A 中,并将文件指针定位在文件结束标记处。
A = fread(fileID)
A
在哪里不需要尺寸输入,然后在 MATLAB 中检查 A?