There is a algorithm, in which author has written steps of algorithm like this,
Initialization: Set up the threshold (th) and maximum iteration number, I.
i ← 0
Calculate x
While (x > th) do
i ← i+1
...
End While
What does this left arrow means here?
The left arrow statement here that the value
i+1is stored in the variablei.That is,
iis incremented by 1.