I have a cellular signal calculation function, which calculates the signal given the distance from the antenna. Without the constants, the function is basically: $f(d)=1/(d^α)$ where $α$ is a parameter.
I need to find the mean of a part of a circle containing points which are the function values. I will show on an example:
In this picture, assume the center of function $f$ is the center of the yellow circle. Each point inside the green circle has distance $d$ from the center, and a value $f(d)$.
I want to find the mean of the values for all the points in the green circle(excluding the blue area, which is determained by the yellow circle!)
I also want to find the mean of the values for all the points in the blue circle area, which I assume is done by substracting.
I saw here that it can be done for a full circle. But how to do it for a part of a circle?
