In RATS User’s Guide UG–5, last instrcution as follows
Code: Select all
compute y(1)=y(2)=y(3)=0.0
set zhat = (x2(t)=z2/y2) , x2 * v2/y2 This second example at entry T first computes X2(T), then uses that to compute the
value of ZHAT, which will be X2(T)*Y2(T)/Y2(T).
I do not understand the code. Why It not be directly written as follow:
Code: Select all
set zhat = (z2/y2) * v2/y2