PDA

View Full Version : Error propagation problem


xfshi2000
Nov2-09, 12:50 PM
Hi all:
In magnetic resonance imaging such as human brain head image, I select several regions of interest (ROI) with the size of 8 pixel. Thus the average value and standard deviation are computed for each ROI. Now I want to evaluate the average value over different ROIs. For example, TotalAvg=[AvgVal(ROI1)+AvgVal(ROI2)+AvgVal(ROI3)]/3. How do I calculate the standard deviation of TotalAvg? It seems that If I use error propagation formula, it make no sense. Would anyone like to give one solution? Thanks

xf

Bob S
Nov2-09, 01:00 PM
The inverse variance (square of standard deviation) of the average value is the sum of the inverse variances of the individual ROIs. The variance is the square of the standard deviation. The ROI values you add should be weighted using their inverse variances. An ROI value with a small standard deviation has more weight than an ROI with a large one.

Se eqn(2) in
http://controls.engin.umich.edu/wiki/index.php/Basic_statistics:_mean,_median,_average,_standard_ deviation,_z-scores,_and_p-value

Bob S

xfshi2000
Nov4-09, 06:47 PM
Thank you Bob. I got it.

xf