fwrite的存储顺序是什么样的?
本帖最后由 enkey 于 2010-11-20 08:32 编辑现在想用fwrite将矩阵A(m,n)存成一个文件,但不知道他的存储顺序是什么样的?以便其他程序读取
或者说怎么控制fwrite的存储格式呢?
建议先用少量的数据试一试:
如A是2*3的矩阵,fwrite后,用ultraedit之类的软件看看它的二进制是怎么排的。
本帖最后由 ChaChing 于 2010-11-21 00:30 编辑
from help
count = fwrite(fid, A) writes the elements of matrix A to the specified file. The data is written to the file in column order...
或同LS用fread验证下
页:
[1]