Mitsubishi QD51 Programming Manual page 543

Logic controller
Hide thumbs Also See for QD51:
Table of Contents

Advertisement

11 INSTRUCTIONS AND FUNCTIONS
Program Example
10 ' This program searches for a value in an array
20 DIM A%(10)
30 FOR I=0 TO 10
40 A%(I)=I+3
50 PRINT "A%(";I;")=";A%(I)
60 NEXT I
70 B=SEARCH(A%,6,0,3)
80 PRINT "6 is found in A%(";B;")"
90 END
RUN
A%(0)= 3
A%(1)= 4
A%(2)= 5
A%(3)= 6
A%(4)= 7
A%(5)= 8
A%(6)= 9
A%(7)= 10
A%(8)= 11
A%(9)= 12
A%(10)= 13
6 is found in A%(3)
OK
11 - 373
:
'Defines an array
:
'Repeats from I = 1 to 10
:
'Stores values in the array variable
:
'Searches for 6
:
'Displays the result
MELSEC-Q
11 - 373

Advertisement

Table of Contents
loading

This manual is also suitable for:

Ad51h-s3Qd51-r24A1sd51s

Table of Contents