This file is indexed.

/usr/share/doc/dpuser-doc/operators.html is in dpuser-doc 3.3+p1+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="Author" content="Thomas Ott">
   <title>DPUSER - The Next Generation: Operators</title>
 <style type="text/css" title="currentStyle">
  @import "dpuser.css";
 </style>
<link rel="shortcut icon" href="dpuser.ico" type="image/xicon">
</head>
<body>

<div id="header">DPUSER - The Next Generation</div>
<div id="menu">
<ul>
<li><a href="index.html">Introduction</a></li>
<li><a href="history.html">History</a></li>
<li><a href="syntax.html">Syntax</a></li>
<li><a class="current" href="operators.html">Operators</a></li>
<li><a href="ifandloop.html">Structural commands</a></li>
<li><a href="variables.html">Data types</a></li>
<li><a href="plotting.html">Graphics</a></li>
<li><a href="fitsfiles.html">Fits files</a></li>
<li><a href="category.html">Category index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="procedures.html">Procedure index</a></li>
<li><a href="pgplot.html">Pgplot index</a></li>
<li><a href="examples.html">Examples</a></li>
<hr>
<li><a href="qfitsview.html">QFitsView documentation</a></li>
<hr>
</ul>
<form method="GET" action="search.html">
<input type="text" size=15 name="keywords">
<input type="submit" value="Search">
</form>
</div>
<div id="content">
<h1>Operators</h1>
In DPUSER, operators are used to combine expressions. There are several
types of operators:
<ul>
<li>
<a href="#assignment">Assignment</a></li>

<li>
<a href="#parentesis">Parentesis</a></li>

<li>
<a href="#ranges">Ranges</a></li>

<li>
<a href="#mathematical">Mathematical</a></li>

<li>
<a href="#boolean">Boolean</a></li>
</ul>

<h2>
<a NAME="assignment"></a>Assignment</h2>
To assign a value to a variable, the assignment operator is used. The general
syntax of an assignment is:
<blockquote><tt>VARIABLE&nbsp; = value</tt>
<br><tt>VARIABLE += value</tt>
<br><tt>...</tt></blockquote>
or, if you wish to assign a value to a subset of a matrix:
<blockquote><tt>VARIABLE[range]&nbsp; = value</tt>
<br><tt>VARIABLE[range] += value</tt>
<br><tt>...</tt></blockquote>
Like in the C programming language, several assignment operators are possible.
<br>&nbsp;
<table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
<tr>
<td><b>Operator</b></td>

<td><b>Syntax</b></td>

<td><b>Operands</b></td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP>Assignment</td>

<td VALIGN=BASELINE NOWRAP><tt>VARIABLE = value</tt></td>

<td VALIGN=BASELINE>Number, matrix, string, string array</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP>Increment</td>

<td VALIGN=BASELINE NOWRAP><tt>VARIABLE++</tt></td>

<td VALIGN=BASELINE>Number, matrix</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP>Decrement</td>

<td VALIGN=BASELINE NOWRAP><tt>VARIABLE--</tt></td>

<td VALIGN=BASELINE>Number, matrix</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP>Multiplication</td>

<td VALIGN=BASELINE NOWRAP><tt>VARIABLE *= value</tt></td>

<td VALIGN=BASELINE>Number, matrix</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP>Division</td>

<td VALIGN=BASELINE NOWRAP><tt>VARIABLE /= value</tt></td>

<td VALIGN=BASELINE>Number, matrix</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP>Addition</td>

<td VALIGN=BASELINE NOWRAP><tt>VARIABLE += value</tt></td>

<td VALIGN=BASELINE>Number, matrix, string, string array</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP>Subtraction</td>

<td VALIGN=BASELINE NOWRAP><tt>VARIABLE -= value</tt></td>

<td VALIGN=BASELINE>Number, matrix</td>
</tr>
</table>

<p>If the "<tt>+=</tt>" operator is applied to a string array, the string
at the right hand side of the statement will be appended to the string
array.
<br>The assignment operator "<tt>=</tt>" can be used to write a matrix
as a FITS file. The syntax for doing this is <tt>'filename'=matrix</tt>,
i.e. you assign a matrix to a filename, which is in single quotes. Note
that writing FITS files is also possible using the <a href="procedure_writefits.html">writefits</a>
procedure.
<h3>
Examples</h3>

<table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
<tr>
<td VALIGN=BASELINE NOWRAP><tt>var = 6</tt></td>

<td VALIGN=BASELINE>creates a new variable named <tt>var</tt> and assigns
a value of 6</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>'gauss.fits' = gauss(129, 129, 30)</tt></td>

<td VALIGN=BASELINE>writes a 2-dimensional gaussian to a disk file named
<tt>gauss.fits</tt></td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>var[100:200, *]++</tt></td>

<td VALIGN=BASELINE>Increments elements 100 through 200 in the first dimension
and all elements in the second dimension</td>
</tr>
</table>

<h2>
<a NAME="parentesis"></a>Parentesis</h2>
Parentesis are used in two ways: To enclose arguments to a function, and
to group expressions. Parentesis can be used to override operator precedence.
<h3>
Examples</h3>

<table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
<tr>
<td VALIGN=BASELINE NOWRAP><tt>print sin(pi())</tt></td>

<td VALIGN=BASELINE WIDTH="100%">prints out the sine of pi</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>var =&nbsp; 2 + 3&nbsp; * 5&nbsp;</tt></td>

<td VALIGN=BASELINE>yields 17</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>var = (2 + 3) * 5</tt></td>

<td VALIGN=BASELINE>yields 25</td>
</tr>
</table>

<h2>
<a NAME="ranges"></a>Ranges</h2>
With ranges, you can create matrices and string arrays, and you can access
subscripts of arrays. To access a single elements of a matrix, supply the
coordinates like <tt>[5,3]</tt>. To access a range, give the inclusive
range, separated by a colon like <tt>[100:300, 50:60]</tt>. You can use
the asterisk (<tt>*</tt>) to access all elements in an axes. Ranges in
DPUSER are 1-based like in fortran. The arguments in a range can be the
result of an expression.
<h3>
Examples</h3>

<table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
<tr>
<td VALIGN=BASELINE NOWRAP><tt>mvar = [1, sin(pi()), 3+5]</tt></td>

<td>creates a 1-dimensional matrix with the values 1, 0, 8</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>nvar = [-3600:3600] / 10</tt></td>

<td>creates a 1D matrix with the values -360, -359.9, ..., 360</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>svar = ["test", "string"]</tt></td>

<td>creates a string array with 2 elements</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>print mvar[2]</tt></td>

<td>prints the second element of <tt>mvar</tt>, which is 0</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>print svar[1]</tt></td>

<td>prints out "test"</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>print svar[2][strlen(svar[2])]</tt></td>

<td VALIGN=BASELINE>prints out the last character of the second element
of svar, which is a "g"</td>
</tr>

<tr>
<td VALIGN=BASELINE NOWRAP><tt>newvar = nvar[3601:3700]</tt></td>

<td>creates a new matrix variable with 100 elements and assigns the values
0, 0.1, ..., 9.9</td>
</tr>
</table>

<h2>
<a NAME="mathematical"></a>Mathematical operators</h2>
The basic mathematical operators are used in DPUSER. Depending on the type
of associated variables, different actions (described below) are taken.
If a matrix is combined with another matrix or a number, the result will be
a matrix in which the operation is performed on each element. The available
operators in precedence order are:
<br>&nbsp;
<table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
<tr>
<td WIDTH="20%"><b>Operator</b></td>

<td WIDTH="10%"><b>Syntax</b></td>

<td WIDTH="30%"><b>Arguments</b></td>

<td WIDTH="40%"><b>Return Value</b></td>
</tr>

<tr>
<td VALIGN=BASELINE>Exponentation</td>

<td VALIGN=BASELINE><b><tt>x ^ y</tt></b></td>

<td VALIGN=BASELINE>Number, Matrix</td>

<td>Number if both x and y are numbers
<br>Matrix if either x or y is a matrix</td>
</tr>

<tr>
<td></td>

<td></td>

<td></td>

<td></td>
</tr>

<tr>
<td></td>

<td></td>

<td></td>

<td></td>
</tr>

<tr>
<td VALIGN=BASELINE>Multiplication</td>

<td VALIGN=BASELINE><b><tt>x * y</tt></b></td>

<td VALIGN=BASELINE>Number, Matrix</td>

<td>Number if both x and y are numbers
<br>Matrix if either x or y is a matrix</td>
</tr>

<tr>
<td></td>

<td></td>

<td></td>

<td></td>
</tr>

<tr>
<td VALIGN=BASELINE>Matrix multiplication</td>

<td VALIGN=BASELINE><b><tt>x # y</tt></b></td>

<td VALIGN=BASELINE>Matrix or vector</td>

<td>Matrix</td>
</tr>

<tr>
<td></td>

<td></td>

<td></td>

<td></td>
</tr>

<tr>
<td VALIGN=BASELINE>Division</td>

<td VALIGN=BASELINE><b><tt>x / y</tt></b></td>

<td VALIGN=BASELINE>Number, Matrix</td>

<td>Number if both x and y are numbers
<br>Matrix if either x or y is a matrix</td>
</tr>

<tr>
<td></td>

<td></td>

<td></td>

<td></td>
</tr>

<tr>
<td VALIGN=BASELINE>Modulus</td>

<td VALIGN=BASELINE><b><tt>x % y</tt></b></td>

<td VALIGN=BASELINE>Integer number</td>

<td>Integer number
</tr>

<tr>
<td VALIGN=BASELINE>Addition</td>

<td VALIGN=BASELINE><b><tt>x + y</tt></b></td>

<td VALIGN=BASELINE>Number, Matrix</td>

<td>Number if both x and y are numbers
<br>Matrix if either x or y is a matrix</td>
</tr>

<tr>
<td></td>

<td></td>

<td VALIGN=BASELINE>Number, String</td>

<td>String if either x or y is a string</td>
</tr>

<tr>
<td></td>

<td></td>

<td VALIGN=BASELINE>String, String array</td>

<td>String array if either x or y is a string array</td>
</tr>

<tr>
<td VALIGN=BASELINE>Subtraction</td>

<td VALIGN=BASELINE><b><tt>x - y</tt></b></td>

<td VALIGN=BASELINE>Number, Matrix</td>

<td>Number if both x and y are numbers
<br>Matrix if either x or y is a matrix</td>
</tr>
</table>

<h2>
<a NAME="boolean"></a>Boolean operators</h2>
Conditional statements can be given using the following operators. The
list is in precedence order:
<br>&nbsp;
<table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
<tr>
<td WIDTH="30%"><b>Operator</b></td>

<td WIDTH="10%"><b>Syntax</b></td>

<td WIDTH="20%"><b>Arguments</b></td>

<td WIDTH="40%"><b>Return Value</b></td>
</tr>

<tr>
<td>Not</td>

<td><b><tt>!x</tt></b></td>

<td>Boolean</td>

<td>Boolean</td>
</tr>

<tr>
<td>Not equals</td>

<td><b><tt>x != y</tt></b></td>

<td>Number, String</td>

<td>Boolean</td>
</tr>

<tr>
<td>Equals</td>

<td><b><tt>x == y</tt></b></td>

<td>Number, String</td>

<td>Boolean</td>
</tr>

<tr>
<td>Greater than</td>

<td><b><tt>x > y</tt></b></td>

<td>Number, String</td>

<td>Boolean</td>
</tr>

<tr>
<td>Greater or equal</td>

<td><b><tt>x >= y</tt></b></td>

<td>Number, String</td>

<td>Boolean</td>
</tr>

<tr>
<td>Less than</td>

<td><b><tt>x &lt; y</tt></b></td>

<td>Number, String</td>

<td>Boolean</td>
</tr>

<tr>
<td>Less than or equal to</td>

<td><b><tt>x &lt;= y</tt></b></td>

<td>Number, String</td>

<td>Boolean</td>
</tr>

<tr>
<td></td>

<td></td>

<td></td>

<td></td>
</tr>

<tr>
<td>And</td>

<td><b><tt>x &amp;&amp; y</tt></b></td>

<td>Boolean</td>

<td>Boolean</td>
</tr>

<tr>
<td>Or</td>

<td><b><tt>x || y</tt></b></td>

<td>Boolean</td>

<td>Boolean</td>
</tr>
</table>

</div>
<div id="copyright">
Copyright &copy; Thomas Ott ---- DPUSER - The Next Generation 3.3 (Rev. )
</div>
</body>
</html>