Script f5_P.m
Download Script f5_P.m
function f5_P(value)
persistent tot
display (tot)
if isempty(tot)
tot = 0;
end
tot = tot + value
Back