function [M,CI] = platereaderstats(data) M = mean(data,3); SD = std(data,0,3); SE = SD./sqrt(size(data,3)); CI = 1.96*SE;