Home
last modified time | relevance | path

Searched refs:x_mean (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/samples/bluetooth/channel_sounding/src/
Ddistance_estimation.c59 float x_mean = 0.0; in linear_regression() local
63 x_mean += (x_values[i] - x_mean) / (i + 1); in linear_regression()
70 b_est_upper += (x_values[i] - x_mean) * (y_values[i] - y_mean); in linear_regression()
71 b_est_lower += (x_values[i] - x_mean) * (x_values[i] - x_mean); in linear_regression()