BCS_Workshop_Apr_20 icon indicating copy to clipboard operation
BCS_Workshop_Apr_20 copied to clipboard

Workshop on basic machine learning, computational modeling, psychophysics, basic data analysis and experiment design

Results 1 BCS_Workshop_Apr_20 issues
Sort by recently updated
recently updated
newest added

: # simple python function def poly(poly_idx, x): value = 0 l = len(poly_idx) - 1 for i in range(l+1): value += poly_idx[i]*(x**(l-i)) return value print("x^2 + x + 1...