How to save data in for loop to excel
이전 댓글 표시
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
Walter Roberson
2022년 1월 14일
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
2022년 1월 14일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!