If you have a variety of noisy estimates/measurements of a single value, what is the best way to combine them in order to estimate the underlying value? I have looked at "Unknown Constant in Additive White Gaussian Noise" in Wikipedia: https://en.wikipedia.org/wiki/Estimation_theory#Unknown_constant_in_additive_white_Gaussian_noise
This is close to what I need, however it assumes multiple measurements with the same noise for each. In this case the measurements have differing amounts of noise (std dev is different for each measurement).
When combining the measurements (means), it would seem appropriate to weight them according to the amount of noise (std dev) associated with each, since if the noise (std dev) is infinite, we have no information, and if zero we have the true value (std dev is zero). The question is, how to weight the individual measurements to get a single estimate (and hopefully an overall std dev or confidence interval for the combined estimate)?
Thanks