How to save data in for loop to excel
Show older comments
I have 2 value in loop show that
T0 = [1035 1200];%K
for i = 1:length(T0)
L0 = [0 5e-6] ;%m
yi0 = [1 0 0] ;%molfrac(ya0 yb0 yc0)
P0 = 162.*yi0 ;%kPa
v0 = 2.037e-3 ;%m3/s (volumetric flowrate)
R = 8.314e-3 ;%(kPa*m3)/(kmol*K)
Fi0 = (P0.*v0)./(R.*T0(i)) ;%[Fa Fb Fc][mol/s mol/s mol/s]
Var0 = [Fi0 T0(i)] ;
[L ,Vary] = ode45(@Try_loop,L0,Var0) ;
end
So I want to save every value i in different file in excel for example when i = 1035 and code run to end then save result calculate of 1035 in excel. I don't know how to save it not to overlap on the same value.
2 Comments
Walter Roberson
on 14 Jan 2022
Do you want 1035 different files? Do you want 1035 different sheets in the same file? Do you want (1035 * 3) columns in the same sheet, with the columns being different length? Do you want a single time column followed 1035 pairs of columns the same length as each other?
Jidapa Adam
on 14 Jan 2022
Accepted Answer
More Answers (0)
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!