Vincent Fatica
2010-05-31 15:30:07 UTC
Will someone please explain why the third of these does not give the expected
result (which the first two do)? And, can I rely on the second behaving like
the first? Thanks.
y = a*x[n] + b*x[n+1] + c*x[n+2];
y = a*x[n] + b*x[n+=1] + c*x[n+=1];
y = a*x[n++] + b*x[n++] + c*x[n];
result (which the first two do)? And, can I rely on the second behaving like
the first? Thanks.
y = a*x[n] + b*x[n+1] + c*x[n+2];
y = a*x[n] + b*x[n+=1] + c*x[n+=1];
y = a*x[n++] + b*x[n++] + c*x[n];
--
- Vince
- Vince