Identifying :=
Posted: Mon Nov 09, 2020 9:05 pm
I was reading through another script and came across two lines that I don't understand what's happening. I searched the help for ":=" but it didn't return any results. Can someone explain what's happening in the second line? I assume it's storing a value into the last index of an array.
smoothPeriod = 0.0
smoothPeriod:= (0.33 * period) + (0.67 * nz(smoothPeriod[1]))
smoothPeriod = 0.0
smoothPeriod:= (0.33 * period) + (0.67 * nz(smoothPeriod[1]))