首页 > 其他 > 详细

matlab————矩阵输出到txt

时间:2014-07-28 19:07:54      阅读:538      评论:0      收藏:0      [点我收藏+]
matlab如何输出矩阵到txt并指定数的精度 (2013-11-20 16:50:43)转载▼ 标签: matlab 输出数据 假设你的数据矩阵为a; [m n] = size(a); [filename pathname] = uiputfile{‘*.txt‘,‘Select Save file‘); if ~filename return; else str = [pathname filename]; fin = fopen(str,‘wt‘); for i = 1:m for j =1:n fprintf(fin,‘.3f\t‘,a(i,j)); %指定输出格式和小数点后有效位数 end fprintf(fin,‘\n‘); end fclose(fin); %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% MATLAB初学者必读 clear,clc a = rand(12000,1004); fid = fopen(‘2.txt‘,‘w‘); fprintf(fid,[‘%f %f %f %f ‘ repmat(‘%f‘,1,1000) ‘\r\n‘],a‘); fclose(fid);

matlab————矩阵输出到txt,布布扣,bubuko.com

matlab————矩阵输出到txt

原文:http://www.cnblogs.com/Lxiaojiang/p/3873069.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!