function [MdFPdt, CIdFPdt, Msynthesis, CIsynthesis, Maccumulation, CIaccumulation] = FPBulkProcess(t,OD,FP) dFP = diff(FP); dOD = diff(OD); dt = mean(diff(t)); dFPdt = dFP./dt; dODdt = dOD./dt; synthesis = dFPdt./OD(2:end,:,:); accumulation = ((dFPdt.*OD(2:end,:,:))-(dODdt.*FP(2:end,:,:)))./(OD(2:end,:,:).^2); [MdFPdt, CIdFPdt] = platereaderstats(dFPdt); [Msynthesis,CIsynthesis] = platereaderstats(synthesis); [Maccumulation,CIaccumulation] = platereaderstats(accumulation);