APLX Help : Help on APL language : System Functions & Variables : ⎕CS Compatibility Setting
|
|
![]() |
|
The system variable ⎕CS←1 Expressions of the form 5 6 7[2] will be allowed rather than giving RANK ERROR. ⎕CS←2 ⎕NC and ⎕NL will use the code 4 rather than ¯1 to indicate an invalid name. ⎕CS←4 Default formatting of numeric arrays uses the same width for all columns, rather than determining the width separately for each column. The three parameters can be set in any combination by adding together the codes. For example: ⎕CS←0 1 3 5[2] RANK ERROR 1 3 5[2] ^ 2 3⍴1 2 3 1 100 1000 (Each column has its own format) 1 2 3 1 100 1000 ⎕CS←5 (Set codes 1 and 4) 1 3 5[2] 3 2 3⍴1 2 3 1 100 1000 (All columns share the same format) 1 2 3 1 100 1000 |
|
APLX Help : Help on APL language : System Functions & Variables : ⎕CS Compatibility Setting
|
Copyright © 1996-2010 MicroAPL Ltd