Section 8. Processing and Math Instructions
8-18
Dim TestYr, LeapStatus
'Declare variables.
TestYr = 1995
If TestYr Mod 4 = 0 And TestYr Mod 100 = 0 Then
'Divisible by 4?
If TestYr Mod 400 = 0 Then
'Divisible by 400?
LeapStatus = True
Else
LeapStatus = False
End If
ElseIf TestYr Mod 4 = 0 Then
LeapStatus = True
Else
LeapStatus = False
End If
Move (Dest, Swath, Source)
Moves a block or fills an array.
Syntax
Move(Dest, Reps, Source, Reps)
Remarks
Block Move or fill array.
Parameters: Dest array, destination reps; Source array or expression; Source
reps. If source reps is less than destination reps, the remainder of destination is
filled with that last value of source.
Parameter
& Data Type
Enter
Dest
Variable or
Array
The variable in which to store the results of the instruction.
Reps
Constant
The number of repetitions for the measurement or instruction.
Source
Array
The name of the variable array that is the input for the instruction.
Reps
Constant
The number of repetitions for the measurement or instruction.
Move Function Example
The example uses the Move function.
Move(x, 20, y, 20)
'move array y into array x
Move(x, 20, 0.0, 1)
'fill x with 0.0.
NOT
The NOT function is used to perform a logical negation on an expression.
Syntax
result = NOT expression
Содержание CR5000
Страница 39: ...Section 1 Installation and Maintenance 1 15 S A N Y O FIGURE 1 11 6 Removal of band clamp and battery ...
Страница 40: ...Section 1 Installation and Maintenance 1 16 This is a blank page ...
Страница 54: ...Section 2 Data Storage and Retrieval 2 14 This is a blank page ...
Страница 88: ...Section 4 CRBasic Native Language Programming 4 12 This is a blank page ...
Страница 94: ...Section 5 Program Declarations 5 6 This is a blank page ...
Страница 172: ...Section 7 Measurement Instructions 7 46 This is a blank page ...
Страница 206: ......
Страница 236: ...Index Index 4 This is a blank page ...
Страница 237: ...This is a blank page ...