I have a struct call CDF of 3 fields with are all double arrays, size 1x48. (below)

I need to get the average (or mean) of the cdfSR field but across each struct element. If I'm not being clear enough I need
[ sum(CDF(:).cdfSR(1))/895, sum(CDF(:).cdfSR(2))/895, ..., sum(CDF(:).cdfSR(48))/895 ]
Each time I try to implement "CDF(:).cdfSR(1)", I receive an error:
Expected one output from a curly brace or dot indexing expression, but there were 895 results.
However, I want all 895 results.