Section 7. Installation
162
Boolean from FLOAT or LONG
When a
FLOAT
or
LONG
is converted to a
Boolean
as shown in CRBasic
example
Conversion of FLOAT / LONG to Boolean
(p. 162),
zero becomes false (
0
)
and non-zero becomes true (
-1
).
Conversion of FLOAT / LONG to Boolean
'This program example demonstrates conversion of Float and Long data types to Boolean
'data type.
Public
Fa
As Float
Public
Fb
As Float
Public
L
As Long
Public
Ba
As Boolean
Public
Bb
As Boolean
Public
Bc
As Boolean
BeginProg
Fa = 0
Fb = 0.125
L = 126
Ba = Fa
'This will set Ba = False (0)
Bb = Fb
'This will Set Bb = True (-1)
Bc = L
'This will Set Bc = True (-1)
EndProg
FLOAT from LONG or Boolean
When a
LONG
or
Boolean
is converted to
FLOAT
, the integer value is loaded
into the
FLOAT
. Booleans are converted to
-1
or
0
.
LONG
integers greater
than 24 bits (16,777,215; the size of the mantissa for a
FLOAT
) will lose
resolution when converted to
FLOAT
.
LONG from FLOAT or Boolean
When converted to
Long, Boolean
is converted to
-1
or
0
. When a
FLOAT
is
converted to a
LONG
, it is truncated. This conversion is the same as the
INT
function (Arithmetic Functions). The conversion is to an integer equal to or less
than the value of the float; for example,
4.6
becomes
4
and –
4.6
becomes –
5
).
If a
FLOAT
is greater than the largest allowable
LONG
(+2,147,483,647), the
integer is set to the maximum. If a
FLOAT
is less than the smallest allowable
LONG
(–2,147,483,648), the integer is set to the minimum.
Integers in Expressions
LONG
s are evaluated in expressions as integers when possible. CRBasic example
Evaluation of Integers
(p. 162)
illustrates evaluation of integers as
LONG
s and
FLOAT
s.
Содержание CR800 Series
Страница 2: ......
Страница 4: ......
Страница 6: ......
Страница 32: ......
Страница 34: ......
Страница 54: ......
Страница 92: ......
Страница 190: ...Section 7 Installation 190 FIGURE 40 Running Average Frequency Response FIGURE 41 Running Average Signal Attenuation ...
Страница 310: ......
Страница 446: ...Section 8 Operation 446 8 11 2 Data Display FIGURE 100 CR1000KD Displaying Data ...
Страница 448: ...Section 8 Operation 448 FIGURE 102 CR1000KD Real Time Custom ...
Страница 449: ...Section 8 Operation 449 8 11 2 3 Final Storage Data FIGURE 103 CR1000KD Final Storage Data ...
Страница 450: ...Section 8 Operation 450 8 11 3 Run Stop Program FIGURE 104 CR1000KD Run Stop Program ...
Страница 452: ...Section 8 Operation 452 FIGURE 106 CR1000KD File Edit ...
Страница 456: ......
Страница 462: ......
Страница 523: ...Section 11 Glossary 523 FIGURE 116 Relationships of Accuracy Precision and Resolution ...
Страница 524: ......
Страница 526: ......
Страница 556: ......
Страница 558: ......
Страница 560: ......
Страница 597: ......