smpl logic
Posted: Wed Oct 01, 2008 5:28 am
In the commands
sample s1 if x>1
sample s2 if x>4
smpl s1 and s2
s2 has no effect. Is that right?
sample s1 if x>1
sample s2 if x>4
smpl s1 and s2
s2 has no effect. Is that right?
Code: Select all
sample s1 if x>1
sample s2 if x2>4
smpl if s1 and s2
Okay, that's consistent with how smpls operate, although in the example omitting the if there should be an error message or something.Actually I take that back, you can do this:
Code: Select all
sample s1 if x>1 sample s2 if x2>4 smpl if s1 and s2