Epson FX-100 User Manual - Page 193

Dimension and arrays, Filling arrays

Page 193 highlights

DIMension and arrays Most BASICS allow you to use up to 10 rows and 10 columns in an array without any special preparation of the computer's memory. Since arrays use up lots of memory, you must inform the system if you intend to use a larger array. In BASIC, this is done with the DIMension statement, which is contained in the first line of the next program. Enter: NEW 10 DEFINT A: N=21: DIM A(N,N) If your system rebels at line 10, use: 10 DEFINT A: N=21: DIM A(21,21) The DIM statement in line 10 reserves enough memory for 21 rows and 21 columns of numbers. That gives you a total of 441 cells. Each cell takes up 2, 4, or 8 bytes, depending on the precision of the variables you use. The DEFINT restricts all variables that start with the letter A to be of the integer type (2 bytes); this definition saves memory. Filling arrays Most computer systems set to 0 all numeric variables, including cells of arrays, at the beginning of a program. If your system does not automatically do this, use the following lines to perform the same function: 15 FOR X=0 TO N: FOR Y=0 TO N 17 A(X,Y)=g: NEXT Y: NEXT X To plot a figure in memory after all the cells are set to zero, you simply deposit ones in the correct positions using LET statements. For example, the statement A(2,3)=l will place a one in location (2,3). Suppose you want to plot a circle of radius 10 in the 21 row by 21column array-definitely a job for a plotter! You can, however, use the standard distance formula (as in Figure 13-5) to calculate the distance from the center cell (11,ll) to each of the surrounding cells. If this distance is equal to 10, the cell content is changed to one; otherwise, the cell value remains zero. 176

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268

DIMension and arrays
Most BASIC
S
allow you to use up to 10 rows and 10 columns in an
array without any special preparation of the computer’s memory.
Since arrays use up lots of memory, you must inform the system if you
intend to use a larger array. In BASIC, this is done with the DIMen-
sion statement, which is contained in the first line of the next program.
Enter:
NEW
10 DEFINT A: N=21: DIM A(N,N)
If your system rebels at line 10, use:
10 DEFINT A: N=21: DIM A(21,21)
The DIM statement in line 10 reserves enough memory for 21 rows
and 21 columns of numbers. That gives you a total of 441 cells. Each
cell takes up 2, 4, or 8 bytes, depending on the precision of the vari-
ables you use. The DEFINT restricts all variables that start with the
letter A to be of the integer type
(2
bytes); this definition saves mem-
ory.
Filling arrays
Most computer systems set to 0 all numeric variables, including
cells of arrays, at the beginning of a program. If your system does not
automatically do this, use the following lines to perform the same
function:
15 FOR X=0 TO N: FOR Y=0 TO N
17 A(X,Y)=g: NEXT Y: NEXT X
To plot a figure in memory after all the cells are set to zero, you simply
deposit ones in the correct positions using LET statements. For exam-
ple, the statement A(2,3)=l will place a one in location (2,3).
Suppose you want to plot a circle of radius 10 in the 21 row by 21-
column array-definitely a job for a plotter! You can, however, use
the standard distance formula (as in Figure 13-5) to calculate the dis-
tance from the center cell (11,ll) to each of the surrounding cells. If
this distance is equal to 10, the cell content is changed to one; other-
wise, the cell value remains zero.
176