zmiana nazwy zmiennej
This commit is contained in:
parent
4ee3bf5ec8
commit
402c72b9ed
@ -33,9 +33,9 @@ def weights(bw_manual, input_x, all_input_values ):
|
|||||||
return w_row
|
return w_row
|
||||||
|
|
||||||
|
|
||||||
def single_y_pred_gauss(bw_manual, input_x, iks, igrek):
|
def single_y_pred_gauss(bw_manual, input_x, x_values, y_values):
|
||||||
w = weights(bw_manual, input_x, iks)
|
w = weights(bw_manual, input_x, x_values)
|
||||||
y_single = np.sum(np.dot(igrek,w))
|
y_single = np.sum(np.dot(y_values,w))
|
||||||
return y_single
|
return y_single
|
||||||
|
|
||||||
def epanechnikov_one(h, ker_x, xi):
|
def epanechnikov_one(h, ker_x, xi):
|
||||||
|
Loading…
Reference in New Issue
Block a user