Oct-19-2017, 07:39 AM
Hello,
is there an alternative method to get the following code snippet faster?
var_refp.size contains 60001 elements, ground freq can change and is something between 200 and 400
That code is in an iteration loop and is executed about 10-50 times
is there an alternative method to get the following code snippet faster?
var_refp.size contains 60001 elements, ground freq can change and is something between 200 and 400
That code is in an iteration loop and is executed about 10-50 times
for k in range(0, var_refp.size, 1): if math.fmod(k, ground_frequenz) == 0: var_cur_ref = var_refp[k] var_refp[k] = var_cur_refTank you
