System Function DR: Difference between revisions
m (→Special Values) |
|||
(8 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
==Monadic Function== | ==Monadic Function== | ||
{{BoxStart|<apll>Z←⎕DR R</apll> | {{BoxStart|<apll>Z←⎕DR R</apll> | ||
|returns the | |returns the internal representation of <apll>R</apll>.}} | ||
{{BoxLine |<apll>R</apll> is an arbitrary array.}} | {{BoxLine |<apll>R</apll> is an arbitrary array.}} | ||
{{BoxEnd |<apll>Z</apll> is a numeric scalar which represents the datatype of <apll>R</apll>.}} | {{BoxEnd |<apll>Z</apll> is a numeric scalar which represents the datatype of <apll>R</apll>.}} | ||
<br /> | <br /> | ||
<p>The | <p>The low-order two digits of the result encode the internal representation as a unique index for each category. The high-order two digits of the result encode either the number of bits per element (where appropriate), or for Hypercomplex numbers, the internal representation of the coefficients:</p> | ||
*<apll> 110</apll>: Boolean, one bit per element | *<apll> 110</apll>: Boolean, one bit per element | ||
Line 15: | Line 15: | ||
*<apll> 14</apll>: Rational, 16 bytes plus two 4- or 8-byte pointers plus size of limbs per element | *<apll> 14</apll>: Rational, 16 bytes plus two 4- or 8-byte pointers plus size of limbs per element | ||
*<apll> 15</apll>: Variable-precision Floating Point, 12 bytes plus one 4- or 8-byte pointer plus size of limbs per element | *<apll> 15</apll>: Variable-precision Floating Point, 12 bytes plus one 4- or 8-byte pointer plus size of limbs per element | ||
*<apll>1216</apll>: 64-bit Integer Complex (two-dimensional) number | |||
*<apll>1316</apll>: 64-bit Floating Point Complex (two-dimensional) number | |||
*<apll>1416</apll>: Multiple-precision Integer/Rational Complex (two-dimensional) number | |||
*<apll>1516</apll>: Multiple-precision Floating Point Complex (two-dimensional) number | |||
*<apll>1217</apll>: 64-bit Integer Quaternion (four-dimensional) number | |||
*<apll>1317</apll>: 64-bit Floating Point Quaternion (four-dimensional) number | |||
*<apll>1417</apll>: Multiple-precision Integer/Rational Quaternion (four-dimensional) number | |||
*<apll>1517</apll>: Multiple-precision Floating Point Quaternion (four-dimensional) number | |||
*<apll>1218</apll>: 64-bit Integer Octonion (eight-dimensional) number | |||
*<apll>1318</apll>: 64-bit Floating Point Octonion (eight-dimensional) number | |||
*<apll>1418</apll>: Multiple-precision Integer/Rational Octonion (eight-dimensional) number | |||
*<apll>1518</apll>: Multiple-precision Floating Point Octonion (eight-dimensional) number | |||
*<apll> 19</apll>: Arithmetic Progression Array, 64 bits each for the offset and multiplier | *<apll> 19</apll>: Arithmetic Progression Array, 64 bits each for the offset and multiplier | ||
*<apll> 20</apll>: Heterogeneous, one 4- or 8-byte pointer per element | *<apll> 20</apll>: Heterogeneous, one 4- or 8-byte pointer per element | ||
*<apll> 21</apll>: Nested, one 4- or 8-byte pointer per element | *<apll> 21</apll>: Nested, one 4- or 8-byte pointer per element | ||
*<apll> 22</apll>: Real (one-dimensional) Ball Arithmetic | |||
*<apll>2216</apll>: Complex (two-dimensional) Ball Arithmetic | |||
*<apll>2217</apll>: Quaternion (four-dimensional) Ball Arithmetic | |||
*<apll>2218</apll>: Octonion (eight-dimensional) Ball Arithmetic | |||
<p>For example,</p> | <p>For example,</p> | ||
< | <pre> | ||
⎕DR 1 0 1 | |||
& | 110 | ||
⎕DR ⌈/⍬ | |||
6413 | |||
⎕DR 2 64⍴1 — Note [1] | |||
19 | |||
⎕DR 2 64⍴1 1 — Note [2] | |||
110 | |||
</pre> | |||
<sup>[1]</sup> This is really an APA, not Boolean <br /> | |||
<sup>[2]</sup> This one is Boolean because Reshape produces APAs for integer singleton right arguments only | |||
==Dyadic Function== | ==Dyadic Function== | ||
Line 33: | Line 56: | ||
{{BoxLine|<apll>L</apll> is an integer scalar or one-element vector datatype (see the table above), or a special value (see below).}} | {{BoxLine|<apll>L</apll> is an integer scalar or one-element vector datatype (see the table above), or a special value (see below).}} | ||
{{BoxEnd|<apll>Z</apll> is <apll>R</apll> where each of the values are converted to the datatype indicated by <apll>L</apll>.}} | {{BoxEnd|<apll>Z</apll> is <apll>R</apll> where each of the values are converted to the datatype indicated by <apll>L</apll>.}} | ||
Returned value < | |||
<p>Returned value <apll>Z</apll> may alternatively be: numeric scalar, vector of numbers, or a character string - depending on what the value of left argument <apll>L</apll> is.</p> | |||
<p>If the conversion is from a narrower datatype to a wider datatype, there must be exactly enough columns in the right argument to match a multiple of the size of the wider datatype. For example, when converting from character (16-bit) to integer (64-bit), the last column of the right argument must be a multiple of 4 (= 64/16); otherwise, a <apll>LENGTH ERROR</apll> is signalled.</p> | <p>If the conversion is from a narrower datatype to a wider datatype, there must be exactly enough columns in the right argument to match a multiple of the size of the wider datatype. For example, when converting from character (16-bit) to integer (64-bit), the last column of the right argument must be a multiple of 4 (= 64/16); otherwise, a <apll>LENGTH ERROR</apll> is signalled.</p> | ||
< | <p>In the following example, an 8-element character vector (=128 bits) is converted to two 64-bit integers (in both NARS2000 32- and 64-bit versions integers are stored in 64-bits):</p> | ||
23362775258562638 13511005043687474< | <apll><pre> | ||
</apll> | 6412 ⎕DR 'NARS2000' | ||
23362775258562638 13511005043687474 | |||
</pre></apll> | |||
<p>If the conversion is from a wider datatype to a narrower datatype, the number of values in the result is a multiple of the ratio of the wider datatype to the narrower datatype. For example, when converting from integer (64-bit) to character (16-bit), the last column in the result is the product of last column of the right argument and 4 (= 64/16).</p> | <p>If the conversion is from a wider datatype to a narrower datatype, the number of values in the result is a multiple of the ratio of the wider datatype to the narrower datatype. For example, when converting from integer (64-bit) to character (16-bit), the last column in the result is the product of last column of the right argument and 4 (= 64/16).</p> | ||
<p>For example('''inverse''' of the example just above),</p> | <p>For example ('''inverse''' of the example just above),</p> | ||
<apll> | <apll><pre> | ||
⍴⎕←1611 ⎕DR 23362775258562638 13511005043687474 | |||
NARS2000 | NARS2000 | ||
8< | 8 | ||
</apll> | </pre></apll> | ||
<p>Keep in mind | <p>Keep in mind how [[APA|Arithmetic Progression Arrays]]''' are created and represented; they can fool both the casual programmer as well as an experienced coder. For example, one might try the following to convert from Boolean to integer:</p> | ||
<apll> | <apll><pre> | ||
6412 ⎕DR 2 64⍴1 ⍝ Conversion of an APA to an integer | |||
1 0 2 64< | 1 0 2 64 | ||
</apll> | </pre></apll> | ||
<p>However, this doesn't produce the expected result because this particular right argument is an < | <p>However, this doesn't produce the expected result because this particular right argument is an <apll>APA</apll>, and <b>not</b> a simple Boolean vector of 1s. That is, under certain circumstances, the reshape primitive creates an APA. In this case, the APA is an array with an offset of <apll>1</apll>, a multiplier of <apll>0</apll> and a shape of <apll>2</apll> rows and <apll>64</apll> cols. The usefulness of APA's in reducing data storage and processing times outweighs their sometimes added code complexity or additional insight, which may be required.</p> | ||
<p>On the other hand, this expression:</p> | <p>On the other hand, this expression:</p> | ||
<apll> | <apll><pre> | ||
6412 ⎕DR 2 64⍴1 1 ⍝ Contrast this with the prior example - Boolean vector created here, NOT an APA | |||
¯1 | |||
¯1 | |||
</apll> | </pre></apll> | ||
<p>produces the expected result because the right argument is | <p>produces the expected result because the right argument is not an integer-valued singleton (in fact, it is a two-element vector which is not eligible for conversion to an APA).</p> | ||
===Special Values=== | ===Special Values=== | ||
Line 76: | Line 102: | ||
<ul> | <ul> | ||
<li><p>The value | <li><p>The value <apll>0</apll> displays the datatype of the right argument as a text '''string''' so you don't need to remember the datatype numbers.</p> | ||
<p>For example,</p> | <p>For example,</p> | ||
<pre> | <apll><pre> | ||
⎕DR 0 | |||
110 | |||
0 ⎕DR 0 | |||
Boolean (110): 1 bit per element | |||
⎕DR 23 | |||
6412 | |||
0 ⎕DR 23 24 | |||
Integer (6412): 64 bits per element | |||
⎕DR 1.1 | |||
6413 | |||
0 ⎕DR 1.1 | |||
Floating Point (6413): 64 bits per element | |||
⎕DR 'a' | ⎕DR 'a' | ||
1611 | 1611 | ||
0 ⎕DR 'a' | 0 ⎕DR 'a' | ||
Character (1611): 16 bits per element | Character (1611): 16 bits per element | ||
⎕DR ⍳12 | |||
19 | |||
0 ⎕DR ⍳12 | |||
Arithmetic Progression Array (19): 64 bit offset + 64 bit multiplier -- PV1 | |||
0 ⎕dr 1 2 3<_x/> | |||
Rational (14): arbitrary precision numerator and denominator | |||
0 ⎕dr 1 2 3<_v/> | |||
VFP (15): variable precision mantissa, 32-bit exponent -- FPC128 | |||
0 ⎕DR 1v64 2<_v/>64 | |||
VFP (15): variable precision mantissa, 32-bit exponent -- FPC64 | |||
0 ⎕DR 1 2<_v/>64 | |||
VFP (15): variable precision mantissa, 32-bit exponent -- FPC-Mixed | |||
0 ⎕DR ⍳¨⍳9 | |||
Nested Array (21): PTR bits per element | |||
0 ⎕DR 'a' 1 | |||
Heterogeneous Array (20): PTR bits per element | |||
</pre></apll> | |||
<p>Note that the storage format for integers (<apll>23 24</apll> in the above examples) is 64-bits per element and APAs (<apll>⍳12</apll>) is 64-bits for both the offset and multiplier regardless of whether you are running the 32- or 64-bit version of NARS2000.</p> | |||
<p>In the last two examples, the reference to <apll>PTR</apll> means that storage format consists of pointers and is either 32- or 64-bits per element in the 32- or 64-bit version of NARS2000, respectively.</p> | |||
<p>Many times in programming - for debugging, data scrutiny or other purposes - it is very important to know <b>exactly</b> how the data is represented by the program. <apll>⎕DR</apll> or Data Representation is a feature designed to allow close scrutiny of how data is stored in memory and operated on in NARS2000.</p> | |||
< | |||
Many times in programming for debugging, data scrutiny or other purposes | |||
<p>Some arrays have properties that may be displayed by this function:</p> | <p>Some arrays have properties that may be displayed by this function:</p> | ||
Line 126: | Line 170: | ||
</li> | </li> | ||
<li><p>The value <apll>1</apll> converts between hex-character and floating point computer formats. This argument makes it very useful to view representations of floating point numbers - in order to better understand numeric precisions, program storage formats, debug multi-precision floating-point math routines(by NARS developers) or examine perceived floating point issues.</p> | <li><p>The value <apll>1</apll> converts between hex-character and floating point computer formats. This argument makes it very useful to view representations of floating point numbers - in order to better understand numeric precisions, program storage formats, debug multi-precision floating-point math routines (by NARS developers) or examine perceived floating point issues. Because this function converts between floating point and character format, it is self-inverse.</p> | ||
<p>For example,</p> | |||
<apll><pre> | |||
⎕PP←99 | |||
1 ⎕DR 1.1 | |||
3FF199999999999A | |||
⍴1 ⎕DR 1.1 | |||
16 | |||
1 ⎕DR 1 | |||
3FF0000000000000 | |||
1 ⎕DR ÷3 | |||
3FD5555555555555 | |||
1 ⎕DR '3fd',13⍴'5' | |||
0.3333333333333333 | |||
1 ⎕DR ¯∞ ∞ | |||
FFF0000000000000 | |||
7FF0000000000000 | |||
1 ⎕DR '7fe',13⍴'f' ⍝ The largest positive number | |||
1.7976931348623157E308 | |||
1 ⎕DR '001',13⍴'0' ⍝ The smallest positive number | |||
2.2250738585072014E¯308 | |||
1 ⎕DR '801',13⍴'0' ⍝ The largest negative number | |||
¯2.2250738585072014E¯308 | |||
1 ⎕DR 'ffe',13⍴'f' ⍝ The smallest negative number | |||
¯1.7976931348623157E308 | |||
</pre></apll> | |||
</li> | |||
<li><p>The value <apll>2</apll> converts between character and 64-bit integer. This argument makes it easy to see the representation of integers. Because this function converts between integer and character format, it is self-inverse.</p> | |||
<p>For example,</p> | <p>For example,</p> | ||
<apll> | <apll><pre> | ||
2 ⎕DR ¯1 | |||
FFFFFFFFFFFFFFFF | |||
2 ⎕DR 16⍴'f' | |||
¯1 | |||
2 ⎕DR '7',15⍴'f' ⍝ The largest positive integer | |||
9223372036854775807 | |||
2 ⎕DR '8',15⍴'0' ⍝ The smallest negative integer | |||
¯9223372036854775808 | |||
2 ⎕DR 9223372036854775807 ¯9223372036854775808 | |||
7FFFFFFFFFFFFFFF | |||
8000000000000000 | |||
</pre></apll> | |||
2 | |||
</apll> | |||
</li> | </li> | ||
<li><p>The value <apll> | <li><p>The value <apll>3</apll> returns the precision in bits of the right argument array as a simple scalar.</p> | ||
<p>For example,</p> | <p>For example,</p> | ||
<apll> | <apll><pre> | ||
3 ⎕DR 0 1 | |||
1 | |||
3 ⎕DR ⍳3 | |||
64 | |||
3 ⎕DR ÷2 3 | |||
64 | |||
3 ⎕DR ÷2 3<_x/> | |||
∞ | |||
3 ⎕DR 2.3<_v/> ⍝ Returns the value of ⎕FPC when the constant was tokenized | |||
</apll> | 128 | ||
3 ⎕DR 1<_v/>64 | |||
64 | |||
3 ⎕DR 'a' | |||
0 | |||
3 ⎕DR 'a' 1 | |||
0 | |||
3 ⎕DR ⊂1 2 | |||
0 | |||
</pre></apll> | |||
<li><p>The value <apll>4</apll> returns the numerator and denominator of a right argument Rational array as a Rational integer array whose shape is <apll>2,{rho}R</apll>.</p> | |||
<p>For example,</p> | |||
<apll><pre> ⍴⎕←4 ⎕dr 1<_r/>3 | |||
1 3 | |||
2 | |||
⍴⎕←4 ⎕dr ,1<_r/>3 | |||
1 | |||
3 | |||
2 1 | |||
⍴⎕←4 ⎕dr 1<_r/>3 3<_r/>7 | |||
1 3 | |||
3 7 | |||
2 2 | |||
</pre></apll> | |||
</li> | </li> | ||
</ul> | </ul> | ||
===A Word of Caution=== | ===A Word of Caution=== | ||
<p>This system function allows you to create special numbers we don't support in that no other primitive generates these numbers and the behavior of all other primitives on these numbers is undefined. Examples of such special numbers include | <p>This system function allows you to create special numbers we don't support in that no other primitive generates these numbers and the behavior of all other primitives on these numbers is undefined. Examples of such special numbers include [https://en.wikipedia.org/wiki/NaN#Quiet_NaN Quiet NaNs], [https://en.wikipedia.org/wiki/NaN#Signaling_NaN Signaling NaNs], [https://en.wikipedia.org/wiki/Signed_zero Negative Zero], and [https://en.wikipedia.org/wiki/Denormal_number Denormals]. If the system doesn't behave as you expect when using these special numbers, don't be surprised.</p> | ||
<p>For example,</p> | <p>For example,</p> | ||
<apll> | <apll><pre> | ||
⎕CT←0 ⋄ ⎕PP←99 | |||
6413 ⎕DR ¯64↑1 | |||
¯0 | ¯0 | ||
QNaN←6413 ⎕DR ¯64↑13⍴1 ⍝ The Real Indefinite (Quiet NaN) where NaN = Not a Number | |||
1 ⎕DR QNaN | |||
FFF8000000000000 | FFF8000000000000 | ||
QNaN=QNaN | |||
0 | 0 | ||
1 ⎕DR '000fffffffffffff' ⍝ The largest positive denormal | |||
2.225073858507201E¯308 | 2.225073858507201E¯308 | ||
1 ⎕DR '0000000000000001' ⍝ The smallest positive denormal | |||
5E¯324 | |||
</apll> | </pre></apll> | ||
<p>There is incomplete support for negative zero (<apll>¯0</apll>) in NARS2000. It may be enabled by setting the second element of <apll>⎕FEATURE</apll> to <apll>1</apll>, i.e. <apll>⎕FEATURE[2]←1</apll>. If you dare to try this concept, please report any problems in the usual manner via the [http://forum.nars2000.org/forum12.html?sid=18df73b72fccdedc847f3990d8b07410 forum], but please understand this feature is not fully supported.</p> | |||
<br/> | <br/> | ||
See also '''[[System_Variable_CT|System Variable ⎕CT]]''' and '''[[System_Variable_PP|System Variable ⎕PP]]'''.<br> | |||
{{SFDM|DR}} | {{SFDM|DR}} |
Latest revision as of 15:07, 18 February 2024
This function is available in both monadic and dyadic forms.
Monadic Function
|
||||
R is an arbitrary array. | ||||
Z is a numeric scalar which represents the datatype of R. |
The low-order two digits of the result encode the internal representation as a unique index for each category. The high-order two digits of the result encode either the number of bits per element (where appropriate), or for Hypercomplex numbers, the internal representation of the coefficients:
- 110: Boolean, one bit per element
- 1611: Character, 16 bits per element
- 6412: Integer, 64 bits per element
- 6413: Floating Point, 64 bits per element (double precision)
- 14: Rational, 16 bytes plus two 4- or 8-byte pointers plus size of limbs per element
- 15: Variable-precision Floating Point, 12 bytes plus one 4- or 8-byte pointer plus size of limbs per element
- 1216: 64-bit Integer Complex (two-dimensional) number
- 1316: 64-bit Floating Point Complex (two-dimensional) number
- 1416: Multiple-precision Integer/Rational Complex (two-dimensional) number
- 1516: Multiple-precision Floating Point Complex (two-dimensional) number
- 1217: 64-bit Integer Quaternion (four-dimensional) number
- 1317: 64-bit Floating Point Quaternion (four-dimensional) number
- 1417: Multiple-precision Integer/Rational Quaternion (four-dimensional) number
- 1517: Multiple-precision Floating Point Quaternion (four-dimensional) number
- 1218: 64-bit Integer Octonion (eight-dimensional) number
- 1318: 64-bit Floating Point Octonion (eight-dimensional) number
- 1418: Multiple-precision Integer/Rational Octonion (eight-dimensional) number
- 1518: Multiple-precision Floating Point Octonion (eight-dimensional) number
- 19: Arithmetic Progression Array, 64 bits each for the offset and multiplier
- 20: Heterogeneous, one 4- or 8-byte pointer per element
- 21: Nested, one 4- or 8-byte pointer per element
- 22: Real (one-dimensional) Ball Arithmetic
- 2216: Complex (two-dimensional) Ball Arithmetic
- 2217: Quaternion (four-dimensional) Ball Arithmetic
- 2218: Octonion (eight-dimensional) Ball Arithmetic
For example,
⎕DR 1 0 1 110 ⎕DR ⌈/⍬ 6413 ⎕DR 2 64⍴1 — Note [1] 19 ⎕DR 2 64⍴1 1 — Note [2] 110
[1] This is really an APA, not Boolean
[2] This one is Boolean because Reshape produces APAs for integer singleton right arguments only
Dyadic Function
|
||||
R is an arbitrary array. | ||||
L is an integer scalar or one-element vector datatype (see the table above), or a special value (see below). | ||||
Z is R where each of the values are converted to the datatype indicated by L. |
Returned value Z may alternatively be: numeric scalar, vector of numbers, or a character string - depending on what the value of left argument L is.
If the conversion is from a narrower datatype to a wider datatype, there must be exactly enough columns in the right argument to match a multiple of the size of the wider datatype. For example, when converting from character (16-bit) to integer (64-bit), the last column of the right argument must be a multiple of 4 (= 64/16); otherwise, a LENGTH ERROR is signalled.
In the following example, an 8-element character vector (=128 bits) is converted to two 64-bit integers (in both NARS2000 32- and 64-bit versions integers are stored in 64-bits):
6412 ⎕DR 'NARS2000' 23362775258562638 13511005043687474
If the conversion is from a wider datatype to a narrower datatype, the number of values in the result is a multiple of the ratio of the wider datatype to the narrower datatype. For example, when converting from integer (64-bit) to character (16-bit), the last column in the result is the product of last column of the right argument and 4 (= 64/16).
For example (inverse of the example just above),
⍴⎕←1611 ⎕DR 23362775258562638 13511005043687474 NARS2000 8
Keep in mind how Arithmetic Progression Arrays are created and represented; they can fool both the casual programmer as well as an experienced coder. For example, one might try the following to convert from Boolean to integer:
6412 ⎕DR 2 64⍴1 ⍝ Conversion of an APA to an integer 1 0 2 64
However, this doesn't produce the expected result because this particular right argument is an APA, and not a simple Boolean vector of 1s. That is, under certain circumstances, the reshape primitive creates an APA. In this case, the APA is an array with an offset of 1, a multiplier of 0 and a shape of 2 rows and 64 cols. The usefulness of APA's in reducing data storage and processing times outweighs their sometimes added code complexity or additional insight, which may be required.
On the other hand, this expression:
6412 ⎕DR 2 64⍴1 1 ⍝ Contrast this with the prior example - Boolean vector created here, NOT an APA ¯1 ¯1
produces the expected result because the right argument is not an integer-valued singleton (in fact, it is a two-element vector which is not eligible for conversion to an APA).
Special Values
There are several special values you may use as a left argument to ⎕DR:
The value 0 displays the datatype of the right argument as a text string so you don't need to remember the datatype numbers.
For example,
⎕DR 0 110 0 ⎕DR 0 Boolean (110): 1 bit per element ⎕DR 23 6412 0 ⎕DR 23 24 Integer (6412): 64 bits per element ⎕DR 1.1 6413 0 ⎕DR 1.1 Floating Point (6413): 64 bits per element ⎕DR 'a' 1611 0 ⎕DR 'a' Character (1611): 16 bits per element ⎕DR ⍳12 19 0 ⎕DR ⍳12 Arithmetic Progression Array (19): 64 bit offset + 64 bit multiplier -- PV1 0 ⎕dr 1 2 3x Rational (14): arbitrary precision numerator and denominator 0 ⎕dr 1 2 3v VFP (15): variable precision mantissa, 32-bit exponent -- FPC128 0 ⎕DR 1v64 2v64 VFP (15): variable precision mantissa, 32-bit exponent -- FPC64 0 ⎕DR 1 2v64 VFP (15): variable precision mantissa, 32-bit exponent -- FPC-Mixed 0 ⎕DR ⍳¨⍳9 Nested Array (21): PTR bits per element 0 ⎕DR 'a' 1 Heterogeneous Array (20): PTR bits per element
Note that the storage format for integers (23 24 in the above examples) is 64-bits per element and APAs (⍳12) is 64-bits for both the offset and multiplier regardless of whether you are running the 32- or 64-bit version of NARS2000.
In the last two examples, the reference to PTR means that storage format consists of pointers and is either 32- or 64-bits per element in the 32- or 64-bit version of NARS2000, respectively.
Many times in programming - for debugging, data scrutiny or other purposes - it is very important to know exactly how the data is represented by the program. ⎕DR or Data Representation is a feature designed to allow close scrutiny of how data is stored in memory and operated on in NARS2000.
Some arrays have properties that may be displayed by this function:
PV0 This array is a Permutation Vector, origin-0 PV1 This array is a Permutation Vector, origin-1 All2s This array consists of all 2s FPCnnn This array is a VFP and all entries are represented in Precision nnn FPC-Mixed This array is a VFP whose entries are represented in two or more different precisions The value 1 converts between hex-character and floating point computer formats. This argument makes it very useful to view representations of floating point numbers - in order to better understand numeric precisions, program storage formats, debug multi-precision floating-point math routines (by NARS developers) or examine perceived floating point issues. Because this function converts between floating point and character format, it is self-inverse.
For example,
⎕PP←99 1 ⎕DR 1.1 3FF199999999999A ⍴1 ⎕DR 1.1 16 1 ⎕DR 1 3FF0000000000000 1 ⎕DR ÷3 3FD5555555555555 1 ⎕DR '3fd',13⍴'5' 0.3333333333333333 1 ⎕DR ¯∞ ∞ FFF0000000000000 7FF0000000000000 1 ⎕DR '7fe',13⍴'f' ⍝ The largest positive number 1.7976931348623157E308 1 ⎕DR '001',13⍴'0' ⍝ The smallest positive number 2.2250738585072014E¯308 1 ⎕DR '801',13⍴'0' ⍝ The largest negative number ¯2.2250738585072014E¯308 1 ⎕DR 'ffe',13⍴'f' ⍝ The smallest negative number ¯1.7976931348623157E308
The value 2 converts between character and 64-bit integer. This argument makes it easy to see the representation of integers. Because this function converts between integer and character format, it is self-inverse.
For example,
2 ⎕DR ¯1 FFFFFFFFFFFFFFFF 2 ⎕DR 16⍴'f' ¯1 2 ⎕DR '7',15⍴'f' ⍝ The largest positive integer 9223372036854775807 2 ⎕DR '8',15⍴'0' ⍝ The smallest negative integer ¯9223372036854775808 2 ⎕DR 9223372036854775807 ¯9223372036854775808 7FFFFFFFFFFFFFFF 8000000000000000
The value 3 returns the precision in bits of the right argument array as a simple scalar.
For example,
3 ⎕DR 0 1 1 3 ⎕DR ⍳3 64 3 ⎕DR ÷2 3 64 3 ⎕DR ÷2 3x ∞ 3 ⎕DR 2.3v ⍝ Returns the value of ⎕FPC when the constant was tokenized 128 3 ⎕DR 1v64 64 3 ⎕DR 'a' 0 3 ⎕DR 'a' 1 0 3 ⎕DR ⊂1 2 0
The value 4 returns the numerator and denominator of a right argument Rational array as a Rational integer array whose shape is 2,⍴R.
For example,
⍴⎕←4 ⎕dr 1r3 1 3 2 ⍴⎕←4 ⎕dr ,1r3 1 3 2 1 ⍴⎕←4 ⎕dr 1r3 3r7 1 3 3 7 2 2
A Word of Caution
This system function allows you to create special numbers we don't support in that no other primitive generates these numbers and the behavior of all other primitives on these numbers is undefined. Examples of such special numbers include Quiet NaNs, Signaling NaNs, Negative Zero, and Denormals. If the system doesn't behave as you expect when using these special numbers, don't be surprised.
For example,
⎕CT←0 ⋄ ⎕PP←99 6413 ⎕DR ¯64↑1 ¯0 QNaN←6413 ⎕DR ¯64↑13⍴1 ⍝ The Real Indefinite (Quiet NaN) where NaN = Not a Number 1 ⎕DR QNaN FFF8000000000000 QNaN=QNaN 0 1 ⎕DR '000fffffffffffff' ⍝ The largest positive denormal 2.225073858507201E¯308 1 ⎕DR '0000000000000001' ⍝ The smallest positive denormal 5E¯324
There is incomplete support for negative zero (¯0) in NARS2000. It may be enabled by setting the second element of ⎕FEATURE to 1, i.e. ⎕FEATURE[2]←1. If you dare to try this concept, please report any problems in the usual manner via the forum, but please understand this feature is not fully supported.
See also System Variable ⎕CT and System Variable ⎕PP.
Note: ⎕DR is available as both a monadic and dyadic form system function, you cannot assign a value to it.
System Variables (A value may be assigned to these except for ⎕DM) | |||||||||
---|---|---|---|---|---|---|---|---|---|
⎕ALX | ⎕CT | ⎕DM | ⎕DT | ⎕ELX | ⎕FC | ⎕FEATURE | ⎕FPC | ⎕IC | ⎕IO |
⎕LR | ⎕LX | ⎕PP | ⎕PR | ⎕PW | ⎕RL | ⎕SA | ⎕WSID | ||
Niladic System Functions (a value cannot be assigned to these) | |||||||||
⎕A | ⎕AV | ⎕EM | ⎕ET | ⎕LC | ⎕NNAMES | ⎕NNUMS | ⎕SI | ⎕SYSID | ⎕SYSVER |
⎕T | ⎕TC | ⎕TCBEL | ⎕TCBS | ⎕TCESC | ⎕TCFF | ⎕TCHT | ⎕TCLF | ⎕TCNL | ⎕TCNUL |
⎕TS | ⎕WA | ||||||||
Monadic or dyadic system functions (a value cannot be assigned to these) | |||||||||
⎕AT | ⎕CR | ⎕DC | ⎕DFT | ⎕DL | ⎕DR | ⎕EA | ⎕EC | ⎕ERROR | ⎕ES |
⎕EX | ⎕FMT | ⎕FX | ⎕MF | ⎕NAPPEND | ⎕NC | ⎕NCREATE | ⎕NERASE | ⎕NINFO | ⎕NL |
⎕NLOCK | ⎕NREAD | ⎕NRENAME | ⎕NREPLACE | ⎕NRESIZE | ⎕NSIZE | ⎕NTIE | ⎕NUNTIE | ⎕STOP | ⎕TF |
⎕TRACE | ⎕UCS | ⎕VR | |||||||
Note that quad functions and variables (except for the ⎕A family of functions) are case insensitive |
See Also | ||
System Commands | System Variables and Functions | Operators |
Keyboard | ||||||||||||||
Alt+Shift | ⍪ | ≡ | ≢ | ⍒ | ⍋ | ⌽ | ⍉ | ⊖ | ⍟ | ⍱ | ⍲ | ⍠ | ⌹ | |
Alt | ⋄ | ¨ | ¯ | < | ≤ | ∅ | ≥ | > | ≠ | ∨ | ∧ | × | ÷ | |
Shift | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | _ | + | |
Key | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | |
Alt+Shift | ⍷ | √ | ⍨ | ⍸ | ⍥ | ⍣ | ⍞ | ⍬ | ⊣ | |||||
Alt | ? | ⍵ | ∊ | ⍴ | § | ↑ | ↓ | ⍳ | ○ | π | ← | → | ⊢ | |
Shift | Q | W | E | R | T | Y | U | I | O | P | { | } | | | |
Key | q | w | e | r | t | y | u | i | o | p | [ | ] | \ | |
Alt+Shift | ∫ | ∂ | ⌻ | ⍢ | ⍙ | ⍤ | ⍫ | ⌷ | ||||||
Alt | ⍺ | ⌈ | ⌊ | ∞ | ∇ | ∆ | ∘ | ‼ | ⎕ | ⍎ | ⍕ | |||
Shift | A | S | D | F | G | H | J | K | L | : | " | |||
Key | a | s | d | f | g | h | j | k | l | ; | ' | |||
Alt+Shift | ⊆ | ⊇ | χ | ⍡ | ⍭ | ⊙ | ||||||||
Alt | ⊂ | ⊃ | ∩ | ∪ | ⊥ | ⊤ | ⍦ | ⍝ | ⍀ | ⌿ | ||||
Shift | Z | X | C | V | B | N | M | < | > | ? | ||||
Key | z | x | c | v | b | n | m | , | . | / |
NARS 2000 Lang Tool Bar |
← | → | + | - | × | ÷ | * | ⍟ | ⌹ | ○ | ! | ? | √ | | | ⌈ | ⌊ | ⊥ | ⊤ | ⊣ | ⊢ | |||
≡ | ≢ | < | ≤ | = | ≥ | > | ≠ | ∨ | ∧ | ⍱ | ⍲ | ↑ | ↓ | ⊂ | ⊃ | ⌷ | ⍋ | ⍒ | |||||
⍳ | ∊ | ⍸ | ⍷ | ∪ | ∩ | ⊆ | ⊇ | ~ | § | π | .. | , | ⍪ | ⍴ | ⌽ | ⊖ | ⍉ | ||||||
/ | \ | ⌿ | ⍀ | ⊙ | ¨ | ⍨ | ⍤ | ⍣ | ⍡ | ⍥ | ⍦ | . | ∘ | ⍠ | ‼ | ⌻ | ∂ | ∫ | ⍞ | ⎕ | ⍎ | ⍕ | |
⋄ | ⍝ | ∇ | ∆ | ⍙ | _ | ⍺ | ⍵ | ¯ | ⍬ | ∞ | ∅ | ||||||||||||
Second Row | i j k | i j k l | g | p | r | v | x |