1function space_var = pollingSet(pinfo, space_var, pos, swk, ctr)
2% SPACE_VAR = POLLINGSET(PINFO, SPACE_VAR, POS, SWK, CTR)
4% Write
the polling controller into
the local-variable columns of a state row.
5% Columns that State.pollingInfo elides are dropped: they are reconstructible
6% from
the rest of
the state (see State.pollingGet), so materializing them
7% would split each state into copies that no observation can tell apart.
9% Copyright (c) 2012-2026, Imperial College London
13 space_var(:, pinfo.ipos) = pos;
16 space_var(:, pinfo.iswk) = swk;
19 space_var(:, pinfo.ictr) = ctr;