matlab 将矩阵写入文件

               
function write_infile( filename,source_matrix )%TEST Summary of this function goes here%  write matrix to filefid=fopen(filename,'a');[x,y]=size(source_matrix);for i=1:x    for j=1:y-1        fprintf(fid,'%f\t',source_matrix(i,j));    end    fprintf(fid,'%f\n',source_matrix(i,y));%每一行回车\nendfclose(fid);end


           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

猜你喜欢

转载自blog.csdn.net/kahncc/article/details/87873371
今日推荐