( ** Go back to PARENTPAGE ../Rate-of-Change-in-Dissimilarity-of-a-Process-playsim.html)
( ** Go back to HOMESITE https://www.tcnd.com)
( ** Go back to SetSphere https://www.setsphere.com)
Rate of Change in Dissimilarity of a Process Using ASPL Command: playsim
ASPL set variables can memorize their previous data, hence they are differential group variables.
When a set variable represents the data sourced by a process,
one can use ASPL playsim command to display the rate of change in dissimilarity in the process.
The command playsim displays the rate of change in similarity of the process.
ASPL 1> P = ggbitsubgS(gstart,1,gcount,1,dmin,2,dmax,4,scount,3,smin,2,smax,4,sfcount,2,sfmin,2,sfmax,4,fcount,2,fmin,2,fmax,4,mix,1)
get in P the random bit group
ASPL 2> sleep 1
sleep 1 second
ASPL 3> ?5,1 P
interrogate the variable P five times with a delay
of 1 second between each iteration.
This will cause P to be memorize its temporal changes, and P is
a differential group variable, eg. @ P
ASPL 4> playsim P
playsim on P
ASPL 5> playsim sim`z P
ASPL 6> playsim sim`ffl P
ASPL 7> playsim sim`mtm P
ASPL 8> playsim sim`fflmtm P
ASPL 9> playsim sim`fc P
ASPL 10> playsim sim`f P
ASPL 11> playsim sim`z P
ASPL 12> playsim sim`c P
ASPL 13> playsim sim`d P
ASPL 14> playsim sim`dmtm P
ASPL 15> Q = ggrandbitgroupS(gstart,1,gcount,1,dcount,2,dmin,4,dmax,7,scount,2,smin,5,smax,8,sfcount,4,sfmin,2,sfmax,6, sscount,2,ssmin,5,ssmax,7,ssfcount,4,ssfmin,2,ssfmax,9, fcount,4,fmin,2,fmax,6, dfcount,2,dfmin,4,dfmax,6)
ASPL 16> sleep 1
ASPL 17> ?5,1 Q
ASPL 18> @ Q
ASPL 19> playsim Q
ASPL 20> playsim sim`d Q
ASPL 21> playsim sim`dmtm Q
ASPL 22> playsim sim`ffl Q
ASPL 23> bye