function [gfp_out, od_out]=timerow(GFP, OD, anz, row, column, sav) a = 0; if (column >0) if (row >0) for i=1:1:anz gfp_out(i, 1) = a; od_out(i, 1) = a; gfp_out(i, 2) = GFP(8*(i-1)+row, column); od_out(i, 2) = GFP(8*(i-1)+row, column); a = a + 0.5; end end end if (column==0 & row>0) for i=1:1:anz gfp_out(i, 1) = a; od_out(i, 1) = a; gfp_out(i, 2:13) = GFP(8*(i-1)+row, 1:12); od_out(i, 2:13) = GFP(8*(i-1)+row, 1:12); a = a + 0.5; end end if (row==0 & column >0) for i=1:1:anz gfp_out(i, 1) = a; od_out(i, 1) = a; gfp_out(i, 2:9) = GFP(8*(i-1)+1:8*(i), column); od_out(i, 2:9) = GFP(8*(i-1)+1:8*(i), column); a = a + 0.5; end end if (sav == 1) save gfp_out_time.txt gfp_out -ASCII; save od_out_time.txt od_out -ASCII; end end