Atomic..Do

Atomic «x» := «expr» Do «body»

Declares a local variable, «x», that can be referred to only from within the expression «body», and assigns it the initial value obtained by evaluating «expr». When used from within «body», Analytica guarantees that the value of «x» is atomic -- i.e., non-array-valued. Analytica achieves this guarantee by iterating (horizontally array abstracting) across the result of «expr» when it is array-valued.

Atomic «x» := «expr» Do «body» is exactly equivalent to:

MetaVar «x»[ ] := «expr» Do «body»

See Also

Comments


You are not allowed to post comments.