How to save output in different column for each loop

7 次查看(过去 30 天)
I was trying to save the output from each for loop into the different column using fprintf(fid,'%7.4f %7.4f %7.4f %7.4f\n',A). I want the first run to complete and save output, and have the second run and save it into different column. However, it is not saving output into four different column rather saving out in a single one. Any suggestion?

回答(2 个)

jean claude
jean claude 2017-10-10
编辑:jean claude 2017-10-10
you have to design the dimension of your output matrix, example if it is 10x3 set i(number of rows) and j(number of columns), than for loop will begin like loop#1 i=1 j=1 loop#2 i=1 j=2 loop#3 i=1 j=3 then loop#4 i=2 j=1 loop#5 i=2 j=2 loop#6 i=2 j=3 ...etc
for i=1:10
for j=1:3
x=randn(1);
a(i,j)=x ;
end
end
you can always use debugging mode https://www.mathworks.com/help/matlab/matlab_prog/debugging-process-and-features.html to understand how matlab treat your loop

Fangjun Jiang
Fangjun Jiang 2017-10-10
You could save the result in a temporary variable and do fprintf() at once. For example
A=zeros(4,1);
for k=1:4
A(k,1)=k+rand(1);
end
fprintf(1,'%7.4f %7.4f %7.4f %7.4f\n',A);

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by