由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - Re: How to save variables in file in MAT
相关主题
如何用fprintf 连续写数据HELP,程序处理的数据老有问题啊
Matlab 读取文件的问题请教用Mathematica输出mesh数据
matlab高手进来看看,谢谢MPI I/O 问题
matlab输出问题[转载] matlab里面移动指针pointer问题
[合集] 在matlab 如何 将生成的文件写到指定的目录。a question about Matlab fread
[合集] 举个例子:每天一题[合集] 请教一段matlab程序 (转载)
How to save variables in file in MATLAB请问C语言fscanf的用法
help about the matlab function "fprintf"[合集] Matlab输出的文件怎么读进fortran?
相关话题的讨论汇总
话题: fid话题: save话题: fprintf话题: mat话题: file
进入Computation版参与讨论
1 (共1页)
x*y
发帖数: 364
1
fprintf can save a file as you want, following is my example.
>>a=[1,2,3,4,5];
>>b=[2.0,4.0,6.0,8.0,10.0];
>> fid = fopen('test.dat','w')
fid =
3
>> for i=1:5
fprintf(fid,'%5d %2s %6.2f \n', a(i), ',', b(i));
end
>> fclose(fid)
ans =
0
>>
then test.dat is:
1 , 2.00
2 , 4.00
3 , 6.00
4 , 8.00
5 , 10.00
If you just want to use it in excel, you don't need comma actually, then it's
easier.
c=zeros(5,2);
c(1:5,1)=a';
c(1:5,2) =b';
save 'test.dat' c -ascii
T
1 (共1页)
进入Computation版参与讨论
相关主题
[合集] Matlab输出的文件怎么读进fortran?[合集] 在matlab 如何 将生成的文件写到指定的目录。
matlab环境下如何建一个空文件[合集] 举个例子:每天一题
求教。matlab在程序运行时,异常自行关闭!!How to save variables in file in MATLAB
求教。matlab在程序运行时,异常自行关闭!!help about the matlab function "fprintf"
如何用fprintf 连续写数据HELP,程序处理的数据老有问题啊
Matlab 读取文件的问题请教用Mathematica输出mesh数据
matlab高手进来看看,谢谢MPI I/O 问题
matlab输出问题[转载] matlab里面移动指针pointer问题
相关话题的讨论汇总
话题: fid话题: save话题: fprintf话题: mat话题: file