File: Concept-Index.html

package info (click to toggle)
octave 4.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 94,200 kB
  • ctags: 52,925
  • sloc: cpp: 316,850; ansic: 43,469; fortran: 23,670; sh: 13,805; yacc: 8,204; objc: 7,939; lex: 3,631; java: 2,127; makefile: 1,746; perl: 1,022; awk: 988
file content (1242 lines) | stat: -rw-r--r-- 243,016 bytes parent folder | download | duplicates (2)
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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 6.1, http://www.gnu.org/software/texinfo/ -->
<head>
<title>GNU Octave: Concept Index</title>

<meta name="description" content="GNU Octave: Concept Index">
<meta name="keywords" content="GNU Octave: Concept Index">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="#Concept-Index" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="index.html#Top" rel="up" title="Top">
<link href="Function-Index.html#Function-Index" rel="next" title="Function Index">
<link href="Copying.html#Copying" rel="prev" title="Copying">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smalllisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>


</head>

<body lang="en">
<a name="Concept-Index"></a>
<div class="header">
<p>
Next: <a href="Function-Index.html#Function-Index" accesskey="n" rel="next">Function Index</a>, Previous: <a href="Copying.html#Copying" accesskey="p" rel="prev">Copying</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Concept-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Concept-Index-1"></a>
<h2 class="unnumbered">Concept Index</h2>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Concept-Index_cp_symbol-1"><b>#</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-2"><b>%</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-3"><b>-</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-4"><b>.</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-5"><b>:</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-6"><b>\</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-7"><b>~</b></a>
 &nbsp; 
<br>
<a class="summary-letter" href="#Concept-Index_cp_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-W"><b>W</b></a>
 &nbsp; 
</td></tr></table>
<table class="index-cp" border="0">
<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-1">#</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Single-Line-Comments.html#index-_0023">&lsquo;<samp>#</samp>&rsquo;</a>:</td><td>&nbsp;</td><td valign="top"><a href="Single-Line-Comments.html#Single-Line-Comments">Single Line Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="Executable-Octave-Programs.html#index-_0023_0021">&lsquo;<samp>#!</samp>&rsquo;</a>:</td><td>&nbsp;</td><td valign="top"><a href="Executable-Octave-Programs.html#Executable-Octave-Programs">Executable Octave Programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Block-Comments.html#index-_0023_007b">&lsquo;<samp>#{</samp>&rsquo;</a>:</td><td>&nbsp;</td><td valign="top"><a href="Block-Comments.html#Block-Comments">Block Comments</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-2">%</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Single-Line-Comments.html#index-_0025">&lsquo;<samp>%</samp>&rsquo;</a>:</td><td>&nbsp;</td><td valign="top"><a href="Single-Line-Comments.html#Single-Line-Comments">Single Line Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="Block-Comments.html#index-_0025_007b">&lsquo;<samp>%{</samp>&rsquo;</a>:</td><td>&nbsp;</td><td valign="top"><a href="Block-Comments.html#Block-Comments">Block Comments</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-3">-</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dbraindead"><code>--braindead</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dbuilt_002din_002ddocstrings_002dfile-filename"><code>--built-in-docstrings-file <var>filename</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002ddebug"><code>--debug</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002ddebug_002djit"><code>--debug-jit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002ddoc_002dcache_002dfile-filename"><code>--doc-cache-file <var>filename</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002decho_002dcommands"><code>--echo-commands</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dexec_002dpath-path"><code>--exec-path <var>path</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dforce_002dgui"><code>--force-gui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dhelp"><code>--help</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dimage_002dpath-path"><code>--image-path <var>path</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dinfo_002dfile-filename"><code>--info-file <var>filename</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dinfo_002dprogram-program"><code>--info-program <var>program</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dinteractive"><code>--interactive</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002djit_002dcompiler"><code>--jit-compiler</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dline_002dediting"><code>--line-editing</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dno_002dgui"><code>--no-gui</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dno_002dhistory"><code>--no-history</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dno_002dinit_002dfile"><code>--no-init-file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dno_002dinit_002dpath"><code>--no-init-path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dno_002dline_002dediting"><code>--no-line-editing</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dno_002dsite_002dfile"><code>--no-site-file</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dno_002dwindow_002dsystem"><code>--no-window-system</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dnorc"><code>--norc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dpath-path"><code>--path <var>path</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dpersist"><code>--persist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dquiet"><code>--quiet</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dsilent"><code>--silent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dtexi_002dmacros_002dfile-filename"><code>--texi-macros-file <var>filename</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dtraditional"><code>--traditional</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dverbose"><code>--verbose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_002dversion"><code>--version</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002d_003f"><code>-?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dd"><code>-d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002df"><code>-f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dh"><code>-h</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dH"><code>-H</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002di"><code>-i</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dp-path"><code>-p <var>path</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dq"><code>-q</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dV"><code>-V</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dv"><code>-v</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-_002dx"><code>-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-4">.</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Continuation-Lines.html#index-_002e_002e_002e-continuation-marker"><code>...</code> continuation marker</a>:</td><td>&nbsp;</td><td valign="top"><a href="Continuation-Lines.html#Continuation-Lines">Continuation Lines</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-_002eoctaverc"><code>.octaverc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-5">:</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Index-Expressions.html#index-_003aend">:end</a>:</td><td>&nbsp;</td><td valign="top"><a href="Index-Expressions.html#Index-Expressions">Index Expressions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-6">\</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Continuation-Lines.html#index-_005c-continuation-marker"><code>\</code> continuation marker</a>:</td><td>&nbsp;</td><td valign="top"><a href="Continuation-Lines.html#Continuation-Lines">Continuation Lines</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_symbol-7">~</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-readline.html#index-_007e_002f_002einputrc"><code>~/.inputrc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-readline.html#Customizing-readline">Customizing readline</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-_007e_002f_002eoctaverc"><code>~/.octaverc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-A">A</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Acknowledgements.html#index-acknowledgements">acknowledgements</a>:</td><td>&nbsp;</td><td valign="top"><a href="Acknowledgements.html#Acknowledgements">Acknowledgements</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-addition">addition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-addition-1">addition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-and-operator">and operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-and-operator-1">and operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles-Anonymous-Functions-Inline-Functions.html#index-anonymous-functions">anonymous functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles-Anonymous-Functions-Inline-Functions.html#Function-Handles-Anonymous-Functions-Inline-Functions">Function Handles Anonymous Functions Inline Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-ans"><code>ans</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html#Variables">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-answers_002c-incorrect">answers, incorrect</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-answers_002c-incorrect-1">answers, incorrect</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="Application_002ddefined-Data.html#index-application_002ddefined-data">application-defined data</a>:</td><td>&nbsp;</td><td valign="top"><a href="Application_002ddefined-Data.html#Application_002ddefined-Data">Application-defined Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-apply">apply</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html#Function-Application">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="Area-Series.html#index-area-series">area series</a>:</td><td>&nbsp;</td><td valign="top"><a href="Area-Series.html#Area-Series">Area Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Calling-Functions.html#index-arguments-in-function-call">arguments in function call</a>:</td><td>&nbsp;</td><td valign="top"><a href="Calling-Functions.html#Calling-Functions">Calling Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-arithmetic-operators">arithmetic operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-arithmetic-operators-1">arithmetic operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-array_002c-creating-a-Java-array">array, creating a Java array</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-assignment-expressions">assignment expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-assignment-operators">assignment operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-activepositionproperty">axes activepositionproperty</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-alim">axes alim</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-alimmode">axes alimmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ambientlightcolor">axes ambientlightcolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-beingdeleted">axes beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-box">axes box</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-busyaction">axes busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-buttondownfcn">axes buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-cameraposition">axes cameraposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-camerapositionmode">axes camerapositionmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-cameratarget">axes cameratarget</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-cameratargetmode">axes cameratargetmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-cameraupvector">axes cameraupvector</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-cameraupvectormode">axes cameraupvectormode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-cameraviewangle">axes cameraviewangle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-cameraviewanglemode">axes cameraviewanglemode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-children">axes children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-clim">axes clim</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-climmode">axes climmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-clipping">axes clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-color">axes color</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-colororder">axes colororder</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-createfcn">axes createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-currentpoint">axes currentpoint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-dataaspectratio">axes dataaspectratio</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-dataaspectratiomode">axes dataaspectratiomode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-deletefcn">axes deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-drawmode">axes drawmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-fontangle">axes fontangle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-fontname">axes fontname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-fontsize">axes fontsize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-fontunits">axes fontunits</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-fontweight">axes fontweight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-axes-graphics-object">axes graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-gridlinestyle">axes gridlinestyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-handlevisibility">axes handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-hittest">axes hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-interpreter">axes interpreter</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-interruptible">axes interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-layer">axes layer</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-linestyleorder">axes linestyleorder</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-linewidth">axes linewidth</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-minorgridlinestyle">axes minorgridlinestyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-mousewheelzoom">axes mousewheelzoom</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-nextplot">axes nextplot</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-outerposition">axes outerposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-parent">axes parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-plotboxaspectratio">axes plotboxaspectratio</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-plotboxaspectratiomode">axes plotboxaspectratiomode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-position">axes position</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-projection">axes projection</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-properties">axes properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-selected">axes selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-selectionhighlight">axes selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-tag">axes tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-tickdir">axes tickdir</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-tickdirmode">axes tickdirmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ticklength">axes ticklength</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-tightinset">axes tightinset</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-title">axes title</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-type">axes type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-uicontextmenu">axes uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-units">axes units</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-userdata">axes userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-view">axes view</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-visible">axes visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xaxislocation">axes xaxislocation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xcolor">axes xcolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xdir">axes xdir</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xgrid">axes xgrid</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xlabel">axes xlabel</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xlim">axes xlim</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xlimmode">axes xlimmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xminorgrid">axes xminorgrid</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xminortick">axes xminortick</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xscale">axes xscale</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xtick">axes xtick</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xticklabel">axes xticklabel</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xticklabelmode">axes xticklabelmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-xtickmode">axes xtickmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-yaxislocation">axes yaxislocation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ycolor">axes ycolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ydir">axes ydir</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ygrid">axes ygrid</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ylabel">axes ylabel</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ylim">axes ylim</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ylimmode">axes ylimmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-yminorgrid">axes yminorgrid</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-yminortick">axes yminortick</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-yscale">axes yscale</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ytick">axes ytick</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-yticklabel">axes yticklabel</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-yticklabelmode">axes yticklabelmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ytickmode">axes ytickmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zcolor">axes zcolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zdir">axes zdir</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zgrid">axes zgrid</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zlabel">axes zlabel</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zlim">axes zlim</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zlimmode">axes zlimmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zminorgrid">axes zminorgrid</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zminortick">axes zminortick</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zscale">axes zscale</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ztick">axes ztick</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zticklabel">axes zticklabel</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-zticklabelmode">axes zticklabelmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-ztickmode">axes ztickmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Axes-Properties.html#index-axes-_005f_005fmodified_005f_005f">axes __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Axes-Properties.html#Axes-Properties">Axes Properties</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-B">B</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Bar-Series.html#index-bar-series">bar series</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bar-Series.html#Bar-Series">Bar Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Executable-Octave-Programs.html#index-batch-processing">batch processing</a>:</td><td>&nbsp;</td><td valign="top"><a href="Executable-Octave-Programs.html#Executable-Octave-Programs">Executable Octave Programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Block-Comments.html#index-block-comments">block comments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Block-Comments.html#Block-Comments">Block Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="The-while-Statement.html#index-body-of-a-loop">body of a loop</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-while-Statement.html#The-while-Statement">The while Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-boolean-expressions">boolean expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-boolean-expressions-1">boolean expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-boolean-operators">boolean operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-boolean-operators-1">boolean operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="The-break-Statement.html#index-break-statement"><code>break</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-break-Statement.html#The-break-Statement">The break Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Broadcasting.html#index-broadcast">broadcast</a>:</td><td>&nbsp;</td><td valign="top"><a href="Broadcasting.html#Broadcasting">Broadcasting</a></td></tr>
<tr><td></td><td valign="top"><a href="Broadcasting.html#index-broadcasting">broadcasting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Broadcasting.html#Broadcasting">Broadcasting</a></td></tr>
<tr><td></td><td valign="top"><a href="Broadcasting.html#index-BSX">BSX</a>:</td><td>&nbsp;</td><td valign="top"><a href="Broadcasting.html#Broadcasting">Broadcasting</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-bug-criteria">bug criteria</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Tracker.html#index-bug-tracker">bug tracker</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Tracker.html#Bug-Tracker">Bug Tracker</a></td></tr>
<tr><td></td><td valign="top"><a href="Reporting-Bugs.html#index-bugs">bugs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-bugs_002c-investigating">bugs, investigating</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="Trouble.html#index-bugs_002c-known">bugs, known</a>:</td><td>&nbsp;</td><td valign="top"><a href="Trouble.html#Trouble">Trouble</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Tracker.html#index-bugs_002c-reporting">bugs, reporting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Tracker.html#Bug-Tracker">Bug Tracker</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-bugs_002c-reporting-1">bugs, reporting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-built_002din-data-types">built-in data types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html#Built_002din-Data-Types">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-built_002din-function">built-in function</a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html#A-Sample-Function-Description">A Sample Function Description</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Callbacks.html#index-callbacks">callbacks</a>:</td><td>&nbsp;</td><td valign="top"><a href="Callbacks.html#Callbacks">Callbacks</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface.html#index-calling-Java-from-Octave">calling Java from Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface.html#Java-Interface">Java Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface.html#index-calling-Octave-from-Java">calling Octave from Java</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface.html#Java-Interface">Java Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="The-switch-Statement.html#index-case-statement"><code>case</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-switch-Statement.html#The-switch-Statement">The switch Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="The-try-Statement.html#index-catch"><code>catch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-try-Statement.html#The-try-Statement">The try Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Cell-Array-Objects.html#index-cell-arrays">cell arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Cell-Array-Objects.html#Cell-Array-Objects">Cell Array Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Cell-Arrays.html#index-cell-arrays-1">cell arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Cell-Arrays.html#Cell-Arrays">Cell Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="String-Objects.html#index-character-strings">character strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="String-Objects.html#String-Objects">String Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Strings.html#index-character-strings-1">character strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Strings.html#Strings">Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-Cholesky-factorization">Cholesky factorization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html#Matrix-Factorizations">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Citing-Octave-in-Publications.html#index-Citations">Citations</a>:</td><td>&nbsp;</td><td valign="top"><a href="Citing-Octave-in-Publications.html#Citing-Octave-in-Publications">Citing Octave in Publications</a></td></tr>
<tr><td></td><td valign="top"><a href="Citing-Octave-in-Publications.html#index-Citing-Octave">Citing Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Citing-Octave-in-Publications.html#Citing-Octave-in-Publications">Citing Octave in Publications</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#index-classes_002c-making-available-to-Octave">classes, making available to Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#How-to-make-Java-classes-available_003f">How to make Java classes available?</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-classpath_002c-adding-new-path">classpath, adding new path</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#index-classpath_002c-difference-between-static-and-dynamic">classpath, difference between static and dynamic</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#How-to-make-Java-classes-available_003f">How to make Java classes available?</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-classpath_002c-displaying">classpath, displaying</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-classpath_002c-dynamic">classpath, dynamic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-classpath_002c-dynamic-1">classpath, dynamic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-classpath_002c-removing-path">classpath, removing path</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#index-classpath_002c-setting">classpath, setting</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#How-to-make-Java-classes-available_003f">How to make Java classes available?</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-classpath_002c-static">classpath, static</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#index-classpath_002etxt"><samp>classpath.txt</samp></a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#How-to-make-Java-classes-available_003f">How to make Java classes available?</a></td></tr>
<tr><td></td><td valign="top"><a href="Cursor-Motion.html#index-clearing-the-screen">clearing the screen</a>:</td><td>&nbsp;</td><td valign="top"><a href="Cursor-Motion.html#Cursor-Motion">Cursor Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-code-profiling">code profiling</a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html#Profiling">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Tips-and-Standards.html#index-coding-standards">coding standards</a>:</td><td>&nbsp;</td><td valign="top"><a href="Tips-and-Standards.html#Tips-and-Standards">Tips and Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Contributing-Guidelines.html#index-coding-standards-1">coding standards</a>:</td><td>&nbsp;</td><td valign="top"><a href="Contributing-Guidelines.html#Contributing-Guidelines">Contributing Guidelines</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-colors_002c-graphics">colors, graphics</a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html#Colors">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Comma-Separated-Lists.html#index-comma-separated-lists">comma separated lists</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comma-Separated-Lists.html#Comma-Separated-Lists">Comma Separated Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-command-and-output-logs">command and output logs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html#Diary-and-Echo-Commands">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-For-Completion.html#index-command-completion">command completion</a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-For-Completion.html#Commands-For-Completion">Commands For Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Command-Description.html#index-command-descriptions">command descriptions</a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Command-Description.html#A-Sample-Command-Description">A Sample Command Description</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-command-echoing">command echoing</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html#Diary-and-Echo-Commands">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-For-History.html#index-command-history">command history</a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-For-History.html#Commands-For-History">Commands For History</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-command-options">command options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Editing.html#index-command_002dline-editing">command-line editing</a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Editing.html#Command-Line-Editing">Command Line Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="Comments.html#index-comments">comments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comments.html#Comments">Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-comparison-expressions">comparison expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-comparison-expressions-1">comparison expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-complex_002dconjugate-transpose">complex-conjugate transpose</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-complex_002dconjugate-transpose-1">complex-conjugate transpose</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Containers.html#index-containers">containers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Containers.html#Data-Containers">Data Containers</a></td></tr>
<tr><td></td><td valign="top"><a href="Continuation-Lines.html#index-continuation-lines">continuation lines</a>:</td><td>&nbsp;</td><td valign="top"><a href="Continuation-Lines.html#Continuation-Lines">Continuation Lines</a></td></tr>
<tr><td></td><td valign="top"><a href="The-continue-Statement.html#index-continue-statement"><code>continue</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-continue-Statement.html#The-continue-Statement">The continue Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Contour-Groups.html#index-contour-series">contour series</a>:</td><td>&nbsp;</td><td valign="top"><a href="Contour-Groups.html#Contour-Groups">Contour Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="How-You-Can-Contribute-to-Octave.html#index-contributing-to-Octave">contributing to Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-You-Can-Contribute-to-Octave.html#How-You-Can-Contribute-to-Octave">How You Can Contribute to Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Preface.html#index-contributors">contributors</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preface.html#Preface">Preface</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Output.html#index-conversion-specifications-_0028printf_0029">conversion specifications (<code>printf</code>)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Output.html#Formatted-Output">Formatted Output</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-conversion-specifications-_0028scanf_0029">conversion specifications (<code>scanf</code>)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html#Formatted-Input">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Techniques.html#index-copy_002don_002dwrite">copy-on-write</a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Techniques.html#Miscellaneous-Techniques">Miscellaneous Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Copying.html#index-copyright">copyright</a>:</td><td>&nbsp;</td><td valign="top"><a href="Copying.html#Copying">Copying</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-core-dump">core dump</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Techniques.html#index-COW">COW</a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Techniques.html#Miscellaneous-Techniques">Miscellaneous Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-creating-graphics-objects">creating graphics objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Comma-Separated-Lists.html#index-cs_002dlists">cs-lists</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comma-Separated-Lists.html#Comma-Separated-Lists">Comma Separated Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-readline.html#index-customizing-readline">customizing <code>readline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-readline.html#Customizing-readline">Customizing readline</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-customizing-the-prompt">customizing the prompt</a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html#Customizing-the-Prompt">Customizing the Prompt</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-D">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Differential-Equations.html#index-DAE">DAE</a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential-Equations.html#Differential-Equations">Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Sources-in-Object-Groups.html#index-data-sources-in-object-groups">data sources in object groups</a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Sources-in-Object-Groups.html#Data-Sources-in-Object-Groups">Data Sources in Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Structure-Objects.html#index-data-structures">data structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Structure-Objects.html#Data-Structure-Objects">Data Structure Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Structures.html#index-data-structures-1">data structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Structures.html#Structures">Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Types.html#index-data-types">data types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Types.html#Data-Types">Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Built_002din-Data-Types.html#index-data-types_002c-built_002din">data types, built-in</a>:</td><td>&nbsp;</td><td valign="top"><a href="Built_002din-Data-Types.html#Built_002din-Data-Types">Built-in Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002ddefined-Data-Types.html#index-data-types_002c-user_002ddefined">data types, user-defined</a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002ddefined-Data-Types.html#User_002ddefined-Data-Types">User-defined Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-decrement-operator">decrement operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Default-Arguments.html#index-default-arguments">default arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Default-Arguments.html#Default-Arguments">Default Arguments</a></td></tr>
<tr><td></td><td valign="top"><a href="Managing-Default-Properties.html#index-default-graphics-properties">default graphics properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Managing-Default-Properties.html#Managing-Default-Properties">Managing Default Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-and-Scripts.html#index-defining-functions">defining functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-and-Scripts.html#Functions-and-Scripts">Functions and Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Obsolete-Functions.html#index-deprecated-functions">deprecated functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Obsolete-Functions.html#Obsolete-Functions">Obsolete Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Format-of-Descriptions.html#index-description-format">description format</a>:</td><td>&nbsp;</td><td valign="top"><a href="Format-of-Descriptions.html#Format-of-Descriptions">Format of Descriptions</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagonal-and-Permutation-Matrices.html#index-diagonal-and-permutation-matrices">diagonal and permutation matrices</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagonal-and-Permutation-Matrices.html#Diagonal-and-Permutation-Matrices">Diagonal and Permutation Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Expressions-Involving-Diagonal-Matrices.html#index-diagonal-matrix-expressions">diagonal matrix expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Expressions-Involving-Diagonal-Matrices.html#Expressions-Involving-Diagonal-Matrices">Expressions Involving Diagonal Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Dialog-Box-Functions.html#index-dialog_002c-displaying-a-help-dialog">dialog, displaying a help dialog</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dialog-Box-Functions.html#Dialog-Box-Functions">Dialog Box Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Dialog-Box-Functions.html#index-dialog_002c-displaying-a-list-dialog">dialog, displaying a list dialog</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dialog-Box-Functions.html#Dialog-Box-Functions">Dialog Box Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Dialog-Box-Functions.html#index-dialog_002c-displaying-a-question-dialog">dialog, displaying a question dialog</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dialog-Box-Functions.html#Dialog-Box-Functions">Dialog Box Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Dialog-Box-Functions.html#index-dialog_002c-displaying-a-warning-dialog">dialog, displaying a warning dialog</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dialog-Box-Functions.html#Dialog-Box-Functions">Dialog Box Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Dialog-Box-Functions.html#index-dialog_002c-displaying-a-warning-dialog-1">dialog, displaying a warning dialog</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dialog-Box-Functions.html#Dialog-Box-Functions">Dialog Box Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Dialog-Box-Functions.html#index-dialog_002c-displaying-an-error-dialog">dialog, displaying an error dialog</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dialog-Box-Functions.html#Dialog-Box-Functions">Dialog Box Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Dialog-Box-Functions.html#index-dialog_002c-displaying-an-input-dialog">dialog, displaying an input dialog</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dialog-Box-Functions.html#Dialog-Box-Functions">Dialog Box Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-diary-of-commands-and-output">diary of commands and output</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html#Diary-and-Echo-Commands">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential-Equations.html#index-differential-equations">differential equations</a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential-Equations.html#Differential-Equations">Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Sending-Patches.html#index-diffs_002c-submitting">diffs, submitting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Sending-Patches.html#Sending-Patches">Sending Patches</a></td></tr>
<tr><td></td><td valign="top"><a href="Distribution.html#index-distribution-of-Octave">distribution of Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Distribution.html#Distribution">Distribution</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-division">division</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-division-1">division</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="The-do_002duntil-Statement.html#index-do_002duntil-statement"><code>do-until</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-do_002duntil-Statement.html#The-do_002duntil-Statement">The do-until Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-documentation-fonts">documentation fonts</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html#Fonts">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation-Notation.html#index-documentation-notation">documentation notation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation-Notation.html#Evaluation-Notation">Evaluation Notation</a></td></tr>
<tr><td></td><td valign="top"><a href="Comments-and-the-Help-System.html#index-documenting-functions">documenting functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comments-and-the-Help-System.html#Comments-and-the-Help-System">Comments and the Help System</a></td></tr>
<tr><td></td><td valign="top"><a href="Comments.html#index-documenting-Octave-programs">documenting Octave programs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comments.html#Comments">Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="Comments-and-the-Help-System.html#index-documenting-user-scripts">documenting user scripts</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comments-and-the-Help-System.html#Comments-and-the-Help-System">Comments and the Help System</a></td></tr>
<tr><td></td><td valign="top"><a href="Mathematical-Considerations.html#index-Dulmage_002dMendelsohn-decomposition">Dulmage-Mendelsohn decomposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Mathematical-Considerations.html#Mathematical-Considerations">Mathematical Considerations</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-dynamic-classpath">dynamic classpath</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#index-dynamic-classpath-1">dynamic classpath</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#How-to-make-Java-classes-available_003f">How to make Java classes available?</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-dynamic-classpath_002c-adding-new-path">dynamic classpath, adding new path</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Structures.html#index-dynamic-naming">dynamic naming</a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Structures.html#Creating-Structures">Creating Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="External-Code-Interface.html#index-dynamic_002dlinking">dynamic-linking</a>:</td><td>&nbsp;</td><td valign="top"><a href="External-Code-Interface.html#External-Code-Interface">External Code Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="External-Code-Interface.html#index-Dynamically-Linked-Functions">Dynamically Linked Functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="External-Code-Interface.html#External-Code-Interface">External Code Interface</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-echoing-executing-commands">echoing executing commands</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html#Diary-and-Echo-Commands">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Editing.html#index-editing-the-command-line">editing the command line</a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Editing.html#Command-Line-Editing">Command Line Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html#index-element_002dby_002delement-evaluation">element-by-element evaluation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Element_002dby_002delement-Boolean-Operators.html#Element_002dby_002delement-Boolean-Operators">Element-by-element Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="The-if-Statement.html#index-else-statement"><code>else</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-if-Statement.html#The-if-Statement">The if Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="The-if-Statement.html#index-elseif-statement"><code>elseif</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-if-Statement.html#The-if-Statement">The if Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-Octave-Mode.html#index-Emacs-TAGS-files">Emacs TAGS files</a>:</td><td>&nbsp;</td><td valign="top"><a href="Using-Octave-Mode.html#Using-Octave-Mode">Using Octave Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Statements.html#index-end-statement"><code>end</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statements.html#Statements">Statements</a></td></tr>
<tr><td></td><td valign="top"><a href="Index-Expressions.html#index-end_002c-indexing"><code>end</code>, indexing</a>:</td><td>&nbsp;</td><td valign="top"><a href="Index-Expressions.html#Index-Expressions">Index Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-for-Statement.html#index-endfor-statement"><code>endfor</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-for-Statement.html#The-for-Statement">The for Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-endfunction-statement"><code>endfunction</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html#Defining-Functions">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="The-if-Statement.html#index-endif-statement"><code>endif</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-if-Statement.html#The-if-Statement">The if Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="The-switch-Statement.html#index-endswitch-statement"><code>endswitch</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-switch-Statement.html#The-switch-Statement">The switch Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="The-while-Statement.html#index-endwhile-statement"><code>endwhile</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-while-Statement.html#The-while-Statement">The while Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="The-try-Statement.html#index-end_005ftry_005fcatch"><code>end_try_catch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-try-Statement.html#The-try-Statement">The try Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="The-unwind_005fprotect-Statement.html#index-end_005funwind_005fprotect"><code>end_unwind_protect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-unwind_005fprotect-Statement.html#The-unwind_005fprotect-Statement">The unwind_protect Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-equality-operator">equality operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-equality-operator-1">equality operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-equality_002c-tests-for">equality, tests for</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-equality_002c-tests-for-1">equality, tests for</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Equations.html#index-equations_002c-nonlinear">equations, nonlinear</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Equations.html#Nonlinear-Equations">Nonlinear Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-erroneous-messages">erroneous messages</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-erroneous-results">erroneous results</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-erroneous-results-1">erroneous results</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Bar-Series.html#index-error-bar-series">error bar series</a>:</td><td>&nbsp;</td><td valign="top"><a href="Error-Bar-Series.html#Error-Bar-Series">Error Bar Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Catching-Errors.html#index-error-ids">error ids</a>:</td><td>&nbsp;</td><td valign="top"><a href="Catching-Errors.html#Catching-Errors">Catching Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Messages.html#index-error-message-notation">error message notation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Error-Messages.html#Error-Messages">Error Messages</a></td></tr>
<tr><td></td><td valign="top"><a href="Errors.html#index-error-messages">error messages</a>:</td><td>&nbsp;</td><td valign="top"><a href="Errors.html#Errors">Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-error-messages_002c-incorrect">error messages, incorrect</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Escape-Sequences-in-String-Constants.html#index-escape-sequence-notation">escape sequence notation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Escape-Sequences-in-String-Constants.html#Escape-Sequences-in-String-Constants">Escape Sequences in String Constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Evaluation-Notation.html#index-evaluation-notation">evaluation notation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Evaluation-Notation.html#Evaluation-Notation">Evaluation Notation</a></td></tr>
<tr><td></td><td valign="top"><a href="Executable-Octave-Programs.html#index-executable-scripts">executable scripts</a>:</td><td>&nbsp;</td><td valign="top"><a href="Executable-Octave-Programs.html#Executable-Octave-Programs">Executable Octave Programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Techniques.html#index-execution-speed">execution speed</a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Techniques.html#Miscellaneous-Techniques">Miscellaneous Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Running-Octave.html#index-exiting-octave">exiting octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Running-Octave.html#Running-Octave">Running Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-exiting-octave-1">exiting octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html#Quitting-Octave">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-exponentiation">exponentiation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-exponentiation-1">exponentiation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Ranges.html#index-expression_002c-range">expression, range</a>:</td><td>&nbsp;</td><td valign="top"><a href="Ranges.html#Ranges">Ranges</a></td></tr>
<tr><td></td><td valign="top"><a href="Expressions.html#index-expressions">expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Expressions.html#Expressions">Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-expressions_002c-assignment">expressions, assignment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-expressions_002c-boolean">expressions, boolean</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-expressions_002c-boolean-1">expressions, boolean</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-expressions_002c-comparison">expressions, comparison</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-expressions_002c-comparison-1">expressions, comparison</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-expressions_002c-logical">expressions, logical</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-expressions_002c-logical-1">expressions, logical</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-F">F</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Recursion.html#index-factorial-function">factorial function</a>:</td><td>&nbsp;</td><td valign="top"><a href="Recursion.html#Recursion">Recursion</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-fatal-signal">fatal signal</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-field_002c-returning-value-of-Java-object-field">field, returning value of Java object field</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-field_002c-setting-value-of-Java-object-field">field, setting value of Java object field</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-fields_002c-displaying-available-fields-of-a-Java-object">fields, displaying available fields of a Java object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-alphamap">figure alphamap</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-beingdeleted">figure beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-busyaction">figure busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-buttondownfcn">figure buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-children">figure children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-clipping">figure clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-closerequestfcn">figure closerequestfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-color">figure color</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-colormap">figure colormap</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-createfcn">figure createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-currentaxes">figure currentaxes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-currentcharacter">figure currentcharacter</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-currentobject">figure currentobject</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-currentpoint">figure currentpoint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-deletefcn">figure deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-dockcontrols">figure dockcontrols</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-doublebuffer">figure doublebuffer</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-filename">figure filename</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-figure-graphics-object">figure graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-handlevisibility">figure handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-hittest">figure hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-integerhandle">figure integerhandle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-interruptible">figure interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-inverthardcopy">figure inverthardcopy</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-keypressfcn">figure keypressfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-keyreleasefcn">figure keyreleasefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-menubar">figure menubar</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-mincolormap">figure mincolormap</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-name">figure name</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-nextplot">figure nextplot</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-numbertitle">figure numbertitle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-outerposition">figure outerposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-paperorientation">figure paperorientation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-paperposition">figure paperposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-paperpositionmode">figure paperpositionmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-papersize">figure papersize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-papertype">figure papertype</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-paperunits">figure paperunits</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-parent">figure parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-pointer">figure pointer</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-pointershapecdata">figure pointershapecdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-pointershapehotspot">figure pointershapehotspot</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-position">figure position</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-properties">figure properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-renderer">figure renderer</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-renderermode">figure renderermode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-resize">figure resize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-resizefcn">figure resizefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-selected">figure selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-selectionhighlight">figure selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-selectiontype">figure selectiontype</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-tag">figure tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-toolbar">figure toolbar</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-type">figure type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-uicontextmenu">figure uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-units">figure units</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-userdata">figure userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-visible">figure visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-windowbuttondownfcn">figure windowbuttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-windowbuttonmotionfcn">figure windowbuttonmotionfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-windowbuttonupfcn">figure windowbuttonupfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-windowkeypressfcn">figure windowkeypressfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-windowkeyreleasefcn">figure windowkeyreleasefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-windowscrollwheelfcn">figure windowscrollwheelfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-windowstyle">figure windowstyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-wvisual">figure wvisual</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-wvisualmode">figure wvisualmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-xdisplay">figure xdisplay</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-xvisual">figure xvisual</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-xvisualmode">figure xvisualmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Figure-Properties.html#index-figure-_005f_005fmodified_005f_005f">figure __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Figure-Properties.html#Figure-Properties">Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-finding-minimums">finding minimums</a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html#Minimizers">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-finish_002em">finish.m</a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html#Quitting-Octave">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Output-Conversion-Syntax.html#index-flag-character-_0028printf_0029">flag character (<code>printf</code>)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Output-Conversion-Syntax.html#Output-Conversion-Syntax">Output Conversion Syntax</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Conversion-Syntax.html#index-flag-character-_0028scanf_0029">flag character (<code>scanf</code>)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Conversion-Syntax.html#Input-Conversion-Syntax">Input Conversion Syntax</a></td></tr>
<tr><td></td><td valign="top"><a href="The-for-Statement.html#index-for-statement"><code>for</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-for-Statement.html#The-for-Statement">The for Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-Frobenius-norm">Frobenius norm</a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html#Basic-Matrix-Functions">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-function-application">function application</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html#Function-Application">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-function-descriptions">function descriptions</a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html#A-Sample-Function-Description">A Sample Function Description</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-function-file">function file</a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html#A-Sample-Function-Description">A Sample Function Description</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Files.html#index-function-file-1">function file</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Files.html#Function-Files">Function Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Defining-Functions.html#index-function-statement"><code>function</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="Defining-Functions.html#Defining-Functions">Defining Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Obsolete-Functions.html#index-functions_002c-deprecated">functions, deprecated</a>:</td><td>&nbsp;</td><td valign="top"><a href="Obsolete-Functions.html#Obsolete-Functions">Obsolete Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Obsolete-Functions.html#index-functions_002c-obsolete">functions, obsolete</a>:</td><td>&nbsp;</td><td valign="top"><a href="Obsolete-Functions.html#Obsolete-Functions">Obsolete Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-and-Scripts.html#index-functions_002c-user_002ddefined">functions, user-defined</a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-and-Scripts.html#Functions-and-Scripts">Functions and Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="How-You-Can-Contribute-to-Octave.html#index-funding-Octave-development">funding Octave development</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-You-Can-Contribute-to-Octave.html#How-You-Can-Contribute-to-Octave">How You Can Contribute to Octave</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-G">G</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-general-p_002dnorm">general p-norm</a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html#Basic-Matrix-Functions">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Variables.html#index-global-statement"><code>global</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Variables.html#Global-Variables">Global Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Variables.html#index-global-variables">global variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Variables.html#Global-Variables">Global Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Grammar-and-Parser.html#index-grammar-rules">grammar rules</a>:</td><td>&nbsp;</td><td valign="top"><a href="Grammar-and-Parser.html#Grammar-and-Parser">Grammar and Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting.html#index-graphics">graphics</a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting.html#Plotting">Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-graphics-colors">graphics colors</a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html#Colors">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Data-Structures.html#index-graphics-data-structures">graphics data structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Data-Structures.html#Graphics-Data-Structures">Graphics Data Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Styles.html#index-graphics-line-styles">graphics line styles</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Styles.html#Line-Styles">Line Styles</a></td></tr>
<tr><td></td><td valign="top"><a href="Marker-Styles.html#index-graphics-marker-styles">graphics marker styles</a>:</td><td>&nbsp;</td><td valign="top"><a href="Marker-Styles.html#Marker-Styles">Marker Styles</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Object-Properties.html#index-graphics-object-properties">graphics object properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Object-Properties.html#Graphics-Object-Properties">Graphics Object Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-axes">graphics object, axes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-figure">graphics object, figure</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-image">graphics object, image</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-line">graphics object, line</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-patch">graphics object, patch</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-root-figure">graphics object, root figure</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-surface">graphics object, surface</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-object_002c-text">graphics object, text</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-objects">graphics objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-graphics-objects_002c-saving">graphics objects, saving</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Managing-Default-Properties.html#index-graphics-properties_002c-default">graphics properties, default</a>:</td><td>&nbsp;</td><td valign="top"><a href="Managing-Default-Properties.html#Managing-Default-Properties">Managing Default Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-graphics-toolkits">graphics toolkits</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html#Graphics-Toolkits">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-greater-than-operator">greater than operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-greater-than-operator-1">greater than operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Quiver-Group.html#index-group-objects">group objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Quiver-Group.html#Quiver-Group">Quiver Group</a></td></tr>
<tr><td></td><td valign="top"><a href="Scatter-Group.html#index-group-objects-1">group objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Scatter-Group.html#Scatter-Group">Scatter Group</a></td></tr>
<tr><td></td><td valign="top"><a href="Stair-Group.html#index-group-objects-2">group objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Stair-Group.html#Stair-Group">Stair Group</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Group.html#index-group-objects-3">group objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Group.html#Surface-Group">Surface Group</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-H">H</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-handle-functions">handle functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles-Anonymous-Functions-Inline-Functions.html#index-handle_002c-function-handles">handle, function handles</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles-Anonymous-Functions-Inline-Functions.html#Function-Handles-Anonymous-Functions-Inline-Functions">Function Handles Anonymous Functions Inline Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Headers.html#index-header-comments">header comments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Headers.html#Function-Headers">Function Headers</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-help_002c-online">help, online</a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html#Getting-Help">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Comments-and-the-Help-System.html#index-help_002c-user_002ddefined-functions">help, user-defined functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comments-and-the-Help-System.html#Comments-and-the-Help-System">Comments and the Help System</a></td></tr>
<tr><td></td><td valign="top"><a href="Service.html#index-help_002c-where-to-find">help, where to find</a>:</td><td>&nbsp;</td><td valign="top"><a href="Service.html#Service">Service</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-Hermitian-operator">Hermitian operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-Hermitian-operator-1">Hermitian operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-Hessenberg-decomposition">Hessenberg decomposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html#Matrix-Factorizations">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Preface.html#index-history">history</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preface.html#Preface">Preface</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-For-History.html#index-history-of-commands">history of commands</a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-For-History.html#Commands-For-History">Commands For History</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="The-if-Statement.html#index-if-statement"><code>if</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-if-Statement.html#The-if-Statement">The if Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-alphadata">image alphadata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-alphadatamapping">image alphadatamapping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-beingdeleted">image beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-busyaction">image busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-buttondownfcn">image buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-cdata">image cdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-cdatamapping">image cdatamapping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-children">image children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-clipping">image clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-createfcn">image createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-deletefcn">image deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-displayname">image displayname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-erasemode">image erasemode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-image-graphics-object">image graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-handlevisibility">image handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-hittest">image hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-interruptible">image interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-parent">image parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-properties">image properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-selected">image selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-selectionhighlight">image selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-tag">image tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-type">image type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-uicontextmenu">image uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-userdata">image userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-visible">image visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-xdata">image xdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-ydata">image ydata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Image-Properties.html#index-image-_005f_005fmodified_005f_005f">image __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Image-Properties.html#Image-Properties">Image Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-improving-Octave">improving Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Sending-Patches.html#index-improving-Octave-1">improving Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Sending-Patches.html#Sending-Patches">Sending Patches</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-incorrect-error-messages">incorrect error messages</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-incorrect-output">incorrect output</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-incorrect-output-1">incorrect output</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-incorrect-results">incorrect results</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-incorrect-results-1">incorrect results</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-increment-operator">increment operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-infinity-norm">infinity norm</a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html#Basic-Matrix-Functions">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-initialization">initialization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Handles-Anonymous-Functions-Inline-Functions.html#index-inline_002c-inline-functions">inline, inline functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Handles-Anonymous-Functions-Inline-Functions.html#Function-Handles-Anonymous-Functions-Inline-Functions">Function Handles Anonymous Functions Inline Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Table-of-Input-Conversions.html#index-input-conversions_002c-for-scanf">input conversions, for <code>scanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Table-of-Input-Conversions.html#Table-of-Input-Conversions">Table of Input Conversions</a></td></tr>
<tr><td></td><td valign="top"><a href="Commands-For-History.html#index-input-history">input history</a>:</td><td>&nbsp;</td><td valign="top"><a href="Commands-For-History.html#Commands-For-History">Commands For History</a></td></tr>
<tr><td></td><td valign="top"><a href="Trouble.html#index-installation-trouble">installation trouble</a>:</td><td>&nbsp;</td><td valign="top"><a href="Trouble.html#Trouble">Trouble</a></td></tr>
<tr><td></td><td valign="top"><a href="Installation.html#index-installing-Octave">installing Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Installation.html#Installation">Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-create-an-instance-of-a-Java-class_003f.html#index-instance_002c-how-to-create">instance, how to create</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-create-an-instance-of-a-Java-class_003f.html#How-to-create-an-instance-of-a-Java-class_003f">How to create an instance of a Java class?</a></td></tr>
<tr><td></td><td valign="top"><a href="Introduction.html#index-introduction">introduction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Introduction.html#Introduction">Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="Introduction-to-Graphics-Structures.html#index-introduction-to-graphics-structures">introduction to graphics structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Introduction-to-Graphics-Structures.html#Introduction-to-Graphics-Structures">Introduction to Graphics Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-invalid-input">invalid input</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-J">J</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface.html#index-Java_002c-calling-from-Octave">Java, calling from Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface.html#Java-Interface">Java Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface.html#index-Java_002c-using-with-Octave">Java, using with Octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface.html#Java-Interface">Java Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#index-javaclasspath_002etxt"><samp>javaclasspath.txt</samp></a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#How-to-make-Java-classes-available_003f">How to make Java classes available?</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-K">K</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-Kendall_0027s-Tau">Kendall&rsquo;s Tau</a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#Correlation-and-Regression-Analysis">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Keywords.html#index-keywords">keywords</a>:</td><td>&nbsp;</td><td valign="top"><a href="Keywords.html#Keywords">Keywords</a></td></tr>
<tr><td></td><td valign="top"><a href="Trouble.html#index-known-causes-of-trouble">known causes of trouble</a>:</td><td>&nbsp;</td><td valign="top"><a href="Trouble.html#Trouble">Trouble</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-L">L</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Grammar-and-Parser.html#index-language-definition">language definition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Grammar-and-Parser.html#Grammar-and-Parser">Grammar and Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-less-than-operator">less than operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-less-than-operator-1">less than operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-beingdeleted">line beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-busyaction">line busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-buttondownfcn">line buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-children">line children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-clipping">line clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-color">line color</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-createfcn">line createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-deletefcn">line deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-displayname">line displayname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-erasemode">line erasemode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-line-graphics-object">line graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-handlevisibility">line handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-hittest">line hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-interpreter">line interpreter</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-interruptible">line interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-linestyle">line linestyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-linewidth">line linewidth</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-marker">line marker</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-markeredgecolor">line markeredgecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-markerfacecolor">line markerfacecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-markersize">line markersize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-parent">line parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-properties">line properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-selected">line selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-selectionhighlight">line selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Series.html#index-line-series">line series</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Series.html#Line-Series">Line Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Styles.html#index-line-styles_002c-graphics">line styles, graphics</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Styles.html#Line-Styles">Line Styles</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-tag">line tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-type">line type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-uicontextmenu">line uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-userdata">line userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-visible">line visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-xdata">line xdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-xdatasource">line xdatasource</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-ydata">line ydata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-ydatasource">line ydatasource</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-zdata">line zdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-zdatasource">line zdatasource</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Properties.html#index-line-_005f_005fmodified_005f_005f">line __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Properties.html#Line-Properties">Line Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Linear-Algebra.html#index-linear-algebra">linear algebra</a>:</td><td>&nbsp;</td><td valign="top"><a href="Linear-Algebra.html#Linear-Algebra">Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Techniques-Used-for-Linear-Algebra.html#index-linear-algebra_002c-techniques">linear algebra, techniques</a>:</td><td>&nbsp;</td><td valign="top"><a href="Techniques-Used-for-Linear-Algebra.html#Techniques-Used-for-Linear-Algebra">Techniques Used for Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-loadable-function">loadable function</a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html#A-Sample-Function-Description">A Sample Function Description</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-loading-data">loading data</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html#Simple-File-I_002fO">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Minimizers.html#index-local-minimum">local minimum</a>:</td><td>&nbsp;</td><td valign="top"><a href="Minimizers.html#Minimizers">Minimizers</a></td></tr>
<tr><td></td><td valign="top"><a href="Diary-and-Echo-Commands.html#index-logging-commands-and-output">logging commands and output</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diary-and-Echo-Commands.html#Diary-and-Echo-Commands">Diary and Echo Commands</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-logical-expressions">logical expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-logical-expressions-1">logical expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-logical-operators">logical operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-logical-operators-1">logical operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="The-while-Statement.html#index-loop">loop</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-while-Statement.html#The-while-Statement">The while Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Looping-Over-Structure-Elements.html#index-looping-over-structure-elements">looping over structure elements</a>:</td><td>&nbsp;</td><td valign="top"><a href="Looping-Over-Structure-Elements.html#Looping-Over-Structure-Elements">Looping Over Structure Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimization.html#index-LP">LP</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimization.html#Optimization">Optimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-LU-decomposition">LU decomposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html#Matrix-Factorizations">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-lvalue">lvalue</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Function-Application.html#index-map">map</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Application.html#Function-Application">Function Application</a></td></tr>
<tr><td></td><td valign="top"><a href="A-Sample-Function-Description.html#index-mapping-function">mapping function</a>:</td><td>&nbsp;</td><td valign="top"><a href="A-Sample-Function-Description.html#A-Sample-Function-Description">A Sample Function Description</a></td></tr>
<tr><td></td><td valign="top"><a href="Marker-Styles.html#index-marker-styles_002c-graphics">marker styles, graphics</a>:</td><td>&nbsp;</td><td valign="top"><a href="Marker-Styles.html#Marker-Styles">Marker Styles</a></td></tr>
<tr><td></td><td valign="top"><a href="Formatted-Input.html#index-matching-failure_002c-in-scanf">matching failure, in <code>scanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Formatted-Input.html#Formatted-Input">Formatted Input</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrices">matrices</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html#Matrices">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagonal-and-Permutation-Matrices.html#index-matrices_002c-diagonal-and-permutation">matrices, diagonal and permutation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagonal-and-Permutation-Matrices.html#Diagonal-and-Permutation-Matrices">Diagonal and Permutation Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-matrix-factorizations">matrix factorizations</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html#Matrix-Factorizations">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-matrix-functions_002c-basic">matrix functions, basic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html#Basic-Matrix-Functions">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-matrix-multiplication">matrix multiplication</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-matrix-multiplication-1">matrix multiplication</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-of-a-Matrix.html#index-matrix_002c-functions-of">matrix, functions of</a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-of-a-Matrix.html#Functions-of-a-Matrix">Functions of a Matrix</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-Matrix-Functions.html#index-matrix_002c-permutation-functions">matrix, permutation functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Permutation-Matrix-Functions.html#Permutation-Matrix-Functions">Permutation Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Specialized-Solvers.html#index-matrix_002c-specialized-solvers">matrix, specialized solvers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Specialized-Solvers.html#Specialized-Solvers">Specialized Solvers</a></td></tr>
<tr><td></td><td valign="top"><a href="Zeros-Treatment.html#index-matrix_002c-zero-elements">matrix, zero elements</a>:</td><td>&nbsp;</td><td valign="top"><a href="Zeros-Treatment.html#Zeros-Treatment">Zeros Treatment</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Conversion-Syntax.html#index-maximum-field-width-_0028scanf_0029">maximum field width (<code>scanf</code>)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Conversion-Syntax.html#Input-Conversion-Syntax">Input Conversion Syntax</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Techniques.html#index-memory-management">memory management</a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Techniques.html#Miscellaneous-Techniques">Miscellaneous Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-memory_002c-displaying-Java-memory-status">memory, displaying Java memory status</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="How-can-I-handle-memory-limitations_003f.html#index-memory_002c-limitations">memory, limitations</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-can-I-handle-memory-limitations_003f.html#How-can-I-handle-memory-limitations_003f">How can I handle memory limitations?</a></td></tr>
<tr><td></td><td valign="top"><a href="Errors.html#index-messages_002c-error">messages, error</a>:</td><td>&nbsp;</td><td valign="top"><a href="Errors.html#Errors">Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-method_002c-invoking-a-method-of-a-Java-object">method, invoking a method of a Java object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-methods_002c-displaying-available-methods-of-a-Java-object">methods, displaying available methods of a Java object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Mex_002dFiles.html#index-mex">mex</a>:</td><td>&nbsp;</td><td valign="top"><a href="Mex_002dFiles.html#Mex_002dFiles">Mex-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Mex_002dFiles.html#index-mex_002dfiles">mex-files</a>:</td><td>&nbsp;</td><td valign="top"><a href="Mex_002dFiles.html#Mex_002dFiles">Mex-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Output-Conversion-Syntax.html#index-minimum-field-width-_0028printf_0029">minimum field width (<code>printf</code>)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Output-Conversion-Syntax.html#Output-Conversion-Syntax">Output Conversion Syntax</a></td></tr>
<tr><td></td><td valign="top"><a href="Missing-Data.html#index-missing-data">missing data</a>:</td><td>&nbsp;</td><td valign="top"><a href="Missing-Data.html#Missing-Data">Missing Data</a></td></tr>
<tr><td></td><td valign="top"><a href="Oct_002dFiles.html#index-mkoctfile">mkoctfile</a>:</td><td>&nbsp;</td><td valign="top"><a href="Oct_002dFiles.html#Oct_002dFiles">Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Block-Comments.html#index-multi_002dline-comments">multi-line comments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Block-Comments.html#Block-Comments">Block Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-multiplication">multiplication</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-multiplication-1">multiplication</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-negation">negation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-negation-1">negation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimization.html#index-NLP">NLP</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimization.html#Optimization">Optimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Nonlinear-Equations.html#index-nonlinear-equations">nonlinear equations</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlinear-Equations.html#Nonlinear-Equations">Nonlinear Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimization.html#index-nonlinear-programming">nonlinear programming</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimization.html#Optimization">Optimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-not-operator">not operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-not-operator-1">not operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Numeric-Objects.html#index-numeric-constant">numeric constant</a>:</td><td>&nbsp;</td><td valign="top"><a href="Numeric-Objects.html#Numeric-Objects">Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Numeric-Data-Types.html#index-numeric-constant-1">numeric constant</a>:</td><td>&nbsp;</td><td valign="top"><a href="Numeric-Data-Types.html#Numeric-Data-Types">Numeric Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Numeric-Objects.html#index-numeric-value">numeric value</a>:</td><td>&nbsp;</td><td valign="top"><a href="Numeric-Objects.html#Numeric-Objects">Numeric Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Numeric-Data-Types.html#index-numeric-value-1">numeric value</a>:</td><td>&nbsp;</td><td valign="top"><a href="Numeric-Data-Types.html#Numeric-Data-Types">Numeric Data Types</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-O">O</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Object-Groups.html#index-object-groups">object groups</a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Groups.html#Object-Groups">Object Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-object_002c-creating-a-Java-object">object, creating a Java object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-create-an-instance-of-a-Java-class_003f.html#index-object_002c-how-to-create">object, how to create</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-create-an-instance-of-a-Java-class_003f.html#How-to-create-an-instance-of-a-Java-class_003f">How to create an instance of a Java class?</a></td></tr>
<tr><td></td><td valign="top"><a href="Obsolete-Functions.html#index-obsolete-functions">obsolete functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Obsolete-Functions.html#Obsolete-Functions">Obsolete Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Oct_002dFiles.html#index-oct">oct</a>:</td><td>&nbsp;</td><td valign="top"><a href="Oct_002dFiles.html#Oct_002dFiles">Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Oct_002dFiles.html#index-oct_002dfiles">oct-files</a>:</td><td>&nbsp;</td><td valign="top"><a href="Oct_002dFiles.html#Oct_002dFiles">Oct-Files</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-distinguish-between-Octave-and-Matlab_003f.html#index-Octave-and-MATLAB_002c-how-to-distinguish-between">Octave and <small>MATLAB</small>, how to distinguish between</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-distinguish-between-Octave-and-Matlab_003f.html#How-to-distinguish-between-Octave-and-Matlab_003f">How to distinguish between Octave and Matlab?</a></td></tr>
<tr><td></td><td valign="top"><a href="External-Code-Interface.html#index-Octave-API">Octave API</a>:</td><td>&nbsp;</td><td valign="top"><a href="External-Code-Interface.html#External-Code-Interface">External Code Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-Octave-command-options">Octave command options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Contributing-Guidelines.html#index-Octave-development">Octave development</a>:</td><td>&nbsp;</td><td valign="top"><a href="Contributing-Guidelines.html#Contributing-Guidelines">Contributing Guidelines</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface.html#index-Octave_002c-calling-from-Java">Octave, calling from Java</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface.html#Java-Interface">Java Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-Octave-Mode.html#index-octave_002dtags"><code>octave-tags</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Using-Octave-Mode.html#Using-Octave-Mode">Using Octave Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Differential-Equations.html#index-ODE">ODE</a>:</td><td>&nbsp;</td><td valign="top"><a href="Differential-Equations.html#Differential-Equations">Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="Getting-Help.html#index-online-help">online help</a>:</td><td>&nbsp;</td><td valign="top"><a href="Getting-Help.html#Getting-Help">Getting Help</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Precedence.html#index-operator-precedence">operator precedence</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Precedence.html#Operator-Precedence">Operator Precedence</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-operators_002c-arithmetic">operators, arithmetic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-operators_002c-arithmetic-1">operators, arithmetic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-operators_002c-assignment">operators, assignment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-operators_002c-boolean">operators, boolean</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-operators_002c-boolean-1">operators, boolean</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-operators_002c-decrement">operators, decrement</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-operators_002c-increment">operators, increment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-operators_002c-logical">operators, logical</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-operators_002c-logical-1">operators, logical</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-operators_002c-relational">operators, relational</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-operators_002c-relational-1">operators, relational</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Techniques.html#index-optimization">optimization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Techniques.html#Miscellaneous-Techniques">Miscellaneous Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimization.html#index-optimization-1">optimization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimization.html#Optimization">Optimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Command-Line-Options.html#index-options_002c-Octave-command">options, Octave command</a>:</td><td>&nbsp;</td><td valign="top"><a href="Command-Line-Options.html#Command-Line-Options">Command Line Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Boolean-Expressions.html#index-or-operator">or operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Boolean-Expressions.html#Boolean-Expressions">Boolean Expressions</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-or-operator-1">or operator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Ordinary-Differential-Equations.html#index-oregonator">oregonator</a>:</td><td>&nbsp;</td><td valign="top"><a href="Ordinary-Differential-Equations.html#Ordinary-Differential-Equations">Ordinary Differential Equations</a></td></tr>
<tr><td></td><td valign="top"><a href="The-switch-Statement.html#index-otherwise-statement"><code>otherwise</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-switch-Statement.html#The-switch-Statement">The switch Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Table-of-Output-Conversions.html#index-output-conversions_002c-for-printf">output conversions, for <code>printf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Table-of-Output-Conversions.html#Table-of-Output-Conversions">Table of Output Conversions</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Parser.html#index-parser">parser</a>:</td><td>&nbsp;</td><td valign="top"><a href="Parser.html#Parser">Parser</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-alphadatamapping">patch alphadatamapping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-ambientstrength">patch ambientstrength</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-backfacelighting">patch backfacelighting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-beingdeleted">patch beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-busyaction">patch busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-buttondownfcn">patch buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-cdata">patch cdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-cdatamapping">patch cdatamapping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-children">patch children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-clipping">patch clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-createfcn">patch createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-deletefcn">patch deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-diffusestrength">patch diffusestrength</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-displayname">patch displayname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-edgealpha">patch edgealpha</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-edgecolor">patch edgecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-edgelighting">patch edgelighting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-erasemode">patch erasemode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-facealpha">patch facealpha</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-facecolor">patch facecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-facelighting">patch facelighting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-faces">patch faces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-facevertexalphadata">patch facevertexalphadata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-facevertexcdata">patch facevertexcdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-patch-graphics-object">patch graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-handlevisibility">patch handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-hittest">patch hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-interpreter">patch interpreter</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-interruptible">patch interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-linestyle">patch linestyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-linewidth">patch linewidth</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-marker">patch marker</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-markeredgecolor">patch markeredgecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-markerfacecolor">patch markerfacecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-markersize">patch markersize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-normalmode">patch normalmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-parent">patch parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-properties">patch properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-selected">patch selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-selectionhighlight">patch selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-specularcolorreflectance">patch specularcolorreflectance</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-specularexponent">patch specularexponent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-specularstrength">patch specularstrength</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-tag">patch tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-type">patch type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-uicontextmenu">patch uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-userdata">patch userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-vertexnormals">patch vertexnormals</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-vertices">patch vertices</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-visible">patch visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-xdata">patch xdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-ydata">patch ydata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-zdata">patch zdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Patch-Properties.html#index-patch-_005f_005fmodified_005f_005f">patch __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Patch-Properties.html#Patch-Properties">Patch Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Sending-Patches.html#index-patches_002c-submitting">patches, submitting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Sending-Patches.html#Sending-Patches">Sending Patches</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-path_002c-adding-to-classpath">path, adding to classpath</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-path_002c-removing-from-classpath">path, removing from classpath</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Permutation-Matrix-Functions.html#index-permutation-matrix-functions">permutation matrix functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Permutation-Matrix-Functions.html#Permutation-Matrix-Functions">Permutation Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Persistent-Variables.html#index-persistent-statement"><code>persistent</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="Persistent-Variables.html#Persistent-Variables">Persistent Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Persistent-Variables.html#index-persistent-variables">persistent variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Persistent-Variables.html#Persistent-Variables">Persistent Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-personal-startup-file">personal startup file</a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Packages.html#index-PKG_005fADD">PKG_ADD</a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Packages.html#Creating-Packages">Creating Packages</a></td></tr>
<tr><td></td><td valign="top"><a href="Creating-Packages.html#index-PKG_005fDEL">PKG_DEL</a>:</td><td>&nbsp;</td><td valign="top"><a href="Creating-Packages.html#Creating-Packages">Creating Packages</a></td></tr>
<tr><td></td><td valign="top"><a href="Plotting.html#index-plotting">plotting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Plotting.html#Plotting">Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="High_002dLevel-Plotting.html#index-plotting_002c-high_002dlevel">plotting, high-level</a>:</td><td>&nbsp;</td><td valign="top"><a href="High_002dLevel-Plotting.html#High_002dLevel-Plotting">High-Level Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plot-Windows.html#index-plotting_002c-multiple-plot-windows">plotting, multiple plot windows</a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plot-Windows.html#Multiple-Plot-Windows">Multiple Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#index-plotting_002c-multiple-plots-per-figure">plotting, multiple plots per figure</a>:</td><td>&nbsp;</td><td valign="top"><a href="Multiple-Plots-on-One-Page.html#Multiple-Plots-on-One-Page">Multiple Plots on One Page</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#index-plotting_002c-object-manipulation">plotting, object manipulation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Objects.html#Manipulation-of-Plot-Objects">Manipulation of Plot Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-plotting_002c-saving-and-printing-plots">plotting, saving and printing plots</a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html#Printing-and-Saving-Plots">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Three_002dDimensional-Plots.html#index-plotting_002c-three_002ddimensional">plotting, three-dimensional</a>:</td><td>&nbsp;</td><td valign="top"><a href="Three_002dDimensional-Plots.html#Three_002dDimensional-Plots">Three-Dimensional Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#index-plotting_002c-two_002ddimensional-functions">plotting, two-dimensional functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Two_002ddimensional-Function-Plotting.html#Two_002ddimensional-Function-Plotting">Two-dimensional Function Plotting</a></td></tr>
<tr><td></td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#index-plotting_002c-window-manipulation">plotting, window manipulation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Manipulation-of-Plot-Windows.html#Manipulation-of-Plot-Windows">Manipulation of Plot Windows</a></td></tr>
<tr><td></td><td valign="top"><a href="Output-Conversion-Syntax.html#index-precision-_0028printf_0029">precision (<code>printf</code>)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Output-Conversion-Syntax.html#Output-Conversion-Syntax">Output Conversion Syntax</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-Notation.html#index-printing-notation">printing notation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-Notation.html#Printing-Notation">Printing Notation</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-printing-plots">printing plots</a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html#Printing-and-Saving-Plots">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Profiling.html#index-profiler">profiler</a>:</td><td>&nbsp;</td><td valign="top"><a href="Profiling.html#Profiling">Profiling</a></td></tr>
<tr><td></td><td valign="top"><a href="Executable-Octave-Programs.html#index-program_002c-self-contained">program, self contained</a>:</td><td>&nbsp;</td><td valign="top"><a href="Executable-Octave-Programs.html#Executable-Octave-Programs">Executable Octave Programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Progress-Bar.html#index-Progress-Bar">Progress Bar</a>:</td><td>&nbsp;</td><td valign="top"><a href="Progress-Bar.html#Progress-Bar">Progress Bar</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-project-startup-file">project startup file</a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-the-Prompt.html#index-prompt-customization">prompt customization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-the-Prompt.html#Customizing-the-Prompt">Customizing the Prompt</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Matrix-Functions.html#index-pseudoinverse">pseudoinverse</a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Matrix-Functions.html#Basic-Matrix-Functions">Basic Matrix Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Expressions-Involving-Diagonal-Matrices.html#index-pseudoinverse-1">pseudoinverse</a>:</td><td>&nbsp;</td><td valign="top"><a href="Expressions-Involving-Diagonal-Matrices.html#Expressions-Involving-Diagonal-Matrices">Expressions Involving Diagonal Matrices</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-Q">Q</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Optimization.html#index-QP">QP</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimization.html#Optimization">Optimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-QR-factorization">QR factorization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html#Matrix-Factorizations">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimization.html#index-quadratic-programming">quadratic programming</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimization.html#Optimization">Optimization</a></td></tr>
<tr><td></td><td valign="top"><a href="Running-Octave.html#index-quitting-octave">quitting octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Running-Octave.html#Running-Octave">Running Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-quitting-octave-1">quitting octave</a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html#Quitting-Octave">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Quiver-Group.html#index-quiver-group">quiver group</a>:</td><td>&nbsp;</td><td valign="top"><a href="Quiver-Group.html#Quiver-Group">Quiver Group</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-quotient">quotient</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-quotient-1">quotient</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Ranges.html#index-range-expressions">range expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Ranges.html#Ranges">Ranges</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-readline.html#index-readline-customization"><code>readline</code> customization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-readline.html#Customizing-readline">Customizing readline</a></td></tr>
<tr><td></td><td valign="top"><a href="Broadcasting.html#index-recycling">recycling</a>:</td><td>&nbsp;</td><td valign="top"><a href="Broadcasting.html#Broadcasting">Broadcasting</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-relational-operators">relational operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-relational-operators-1">relational operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Reporting-Bugs.html#index-reporting-bugs">reporting bugs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Tracker.html#index-reporting-bugs-1">reporting bugs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Tracker.html#Bug-Tracker">Bug Tracker</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-results_002c-incorrect">results, incorrect</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-results_002c-incorrect-1">results, incorrect</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-beingdeleted">root beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-busyaction">root busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-buttondownfcn">root buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-callbackobject">root callbackobject</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-children">root children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-clipping">root clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-commandwindowsize">root commandwindowsize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-createfcn">root createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-currentfigure">root currentfigure</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-deletefcn">root deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-diary">root diary</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-diaryfile">root diaryfile</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-echo">root echo</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-errormessage">root errormessage</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-root-figure-graphics-object">root figure graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-figure-properties">root figure properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-fixedwidthfontname">root fixedwidthfontname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-format">root format</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-formatspacing">root formatspacing</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-handlevisibility">root handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-hittest">root hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-interruptible">root interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-language">root language</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-monitorpositions">root monitorpositions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-parent">root parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-pointerlocation">root pointerlocation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-pointerwindow">root pointerwindow</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-recursionlimit">root recursionlimit</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-screendepth">root screendepth</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-screenpixelsperinch">root screenpixelsperinch</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-screensize">root screensize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-selected">root selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-selectionhighlight">root selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-showhiddenhandles">root showhiddenhandles</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-tag">root tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-type">root type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-uicontextmenu">root uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-units">root units</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-userdata">root userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-visible">root visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Root-Figure-Properties.html#index-root-_005f_005fmodified_005f_005f">root __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Root-Figure-Properties.html#Root-Figure-Properties">Root Figure Properties</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-S">S</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-File-I_002fO.html#index-saving-data">saving data</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-File-I_002fO.html#Simple-File-I_002fO">Simple File I/O</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-saving-graphics-objects">saving graphics objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Printing-and-Saving-Plots.html#index-saving-plots">saving plots</a>:</td><td>&nbsp;</td><td valign="top"><a href="Printing-and-Saving-Plots.html#Printing-and-Saving-Plots">Printing and Saving Plots</a></td></tr>
<tr><td></td><td valign="top"><a href="Scatter-Group.html#index-scatter-group">scatter group</a>:</td><td>&nbsp;</td><td valign="top"><a href="Scatter-Group.html#Scatter-Group">Scatter Group</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-Schur-decomposition">Schur decomposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html#Matrix-Factorizations">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-and-Scripts.html#index-script-files">script files</a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-and-Scripts.html#Functions-and-Scripts">Functions and Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Executable-Octave-Programs.html#index-scripts">scripts</a>:</td><td>&nbsp;</td><td valign="top"><a href="Executable-Octave-Programs.html#Executable-Octave-Programs">Executable Octave Programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Executable-Octave-Programs.html#index-self-contained-programs">self contained programs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Executable-Octave-Programs.html#Executable-Octave-Programs">Executable Octave Programs</a></td></tr>
<tr><td></td><td valign="top"><a href="Area-Series.html#index-series-objects">series objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Area-Series.html#Area-Series">Area Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Bar-Series.html#index-series-objects-1">series objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bar-Series.html#Bar-Series">Bar Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Contour-Groups.html#index-series-objects-2">series objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Contour-Groups.html#Contour-Groups">Contour Groups</a></td></tr>
<tr><td></td><td valign="top"><a href="Error-Bar-Series.html#index-series-objects-3">series objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Error-Bar-Series.html#Error-Bar-Series">Error Bar Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Line-Series.html#index-series-objects-4">series objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Line-Series.html#Line-Series">Line Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Stem-Series.html#index-series-objects-5">series objects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Stem-Series.html#Stem-Series">Stem Series</a></td></tr>
<tr><td></td><td valign="top"><a href="Short_002dcircuit-Boolean-Operators.html#index-short_002dcircuit-evaluation">short-circuit evaluation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Short_002dcircuit-Boolean-Operators.html#Short_002dcircuit-Boolean-Operators">Short-circuit Boolean Operators</a></td></tr>
<tr><td></td><td valign="top"><a href="Assignment-Ops.html#index-side-effect">side effect</a>:</td><td>&nbsp;</td><td valign="top"><a href="Assignment-Ops.html#Assignment-Ops">Assignment Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Broadcasting.html#index-SIMD">SIMD</a>:</td><td>&nbsp;</td><td valign="top"><a href="Broadcasting.html#Broadcasting">Broadcasting</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrix-Factorizations.html#index-singular-value-decomposition">singular value decomposition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrix-Factorizations.html#Matrix-Factorizations">Matrix Factorizations</a></td></tr>
<tr><td></td><td valign="top"><a href="Quitting-Octave.html#index-site-exiting-file">site exiting file</a>:</td><td>&nbsp;</td><td valign="top"><a href="Quitting-Octave.html#Quitting-Octave">Quitting Octave</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-site-startup-file">site startup file</a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#index-Spearman_0027s-Rho">Spearman&rsquo;s Rho</a>:</td><td>&nbsp;</td><td valign="top"><a href="Correlation-and-Regression-Analysis.html#Correlation-and-Regression-Analysis">Correlation and Regression Analysis</a></td></tr>
<tr><td></td><td valign="top"><a href="Miscellaneous-Techniques.html#index-speedups">speedups</a>:</td><td>&nbsp;</td><td valign="top"><a href="Miscellaneous-Techniques.html#Miscellaneous-Techniques">Miscellaneous Techniques</a></td></tr>
<tr><td></td><td valign="top"><a href="Stair-Group.html#index-stair-group">stair group</a>:</td><td>&nbsp;</td><td valign="top"><a href="Stair-Group.html#Stair-Group">Stair Group</a></td></tr>
<tr><td></td><td valign="top"><a href="Tips-and-Standards.html#index-standards-of-coding-style">standards of coding style</a>:</td><td>&nbsp;</td><td valign="top"><a href="Tips-and-Standards.html#Tips-and-Standards">Tips and Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-startup">startup</a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-startup-files">startup files</a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Statements.html#index-statements">statements</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statements.html#Statements">Statements</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface-Functions.html#index-static-classpath">static classpath</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface-Functions.html#Java-Interface-Functions">Java Interface Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#index-static-classpath-1">static classpath</a>:</td><td>&nbsp;</td><td valign="top"><a href="How-to-make-Java-classes-available_003f.html#How-to-make-Java-classes-available_003f">How to make Java classes available?</a></td></tr>
<tr><td></td><td valign="top"><a href="Stem-Series.html#index-stem-series">stem series</a>:</td><td>&nbsp;</td><td valign="top"><a href="Stem-Series.html#Stem-Series">Stem Series</a></td></tr>
<tr><td></td><td valign="top"><a href="String-Objects.html#index-strings">strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="String-Objects.html#String-Objects">String Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Strings.html#index-strings-1">strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Strings.html#Strings">Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="Sparse-Linear-Algebra.html#index-structural-rank">structural rank</a>:</td><td>&nbsp;</td><td valign="top"><a href="Sparse-Linear-Algebra.html#Sparse-Linear-Algebra">Sparse Linear Algebra</a></td></tr>
<tr><td></td><td valign="top"><a href="Looping-Over-Structure-Elements.html#index-structure-elements_002c-looping-over">structure elements, looping over</a>:</td><td>&nbsp;</td><td valign="top"><a href="Looping-Over-Structure-Elements.html#Looping-Over-Structure-Elements">Looping Over Structure Elements</a></td></tr>
<tr><td></td><td valign="top"><a href="Data-Structure-Objects.html#index-structures">structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Data-Structure-Objects.html#Data-Structure-Objects">Data Structure Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Structures.html#index-structures-1">structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Structures.html#Structures">Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="Sending-Patches.html#index-submitting-diffs">submitting diffs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Sending-Patches.html#Sending-Patches">Sending Patches</a></td></tr>
<tr><td></td><td valign="top"><a href="Sending-Patches.html#index-submitting-patches">submitting patches</a>:</td><td>&nbsp;</td><td valign="top"><a href="Sending-Patches.html#Sending-Patches">Sending Patches</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-subtraction">subtraction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-subtraction-1">subtraction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-suggestions">suggestions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-alphadata">surface alphadata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-alphadatamapping">surface alphadatamapping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-ambientstrength">surface ambientstrength</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-backfacelighting">surface backfacelighting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-beingdeleted">surface beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-busyaction">surface busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-buttondownfcn">surface buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-cdata">surface cdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-cdatamapping">surface cdatamapping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-cdatasource">surface cdatasource</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-children">surface children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-clipping">surface clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-createfcn">surface createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-deletefcn">surface deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-diffusestrength">surface diffusestrength</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-displayname">surface displayname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-edgealpha">surface edgealpha</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-edgecolor">surface edgecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-edgelighting">surface edgelighting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-erasemode">surface erasemode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-facealpha">surface facealpha</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-facecolor">surface facecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-facelighting">surface facelighting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-surface-graphics-object">surface graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Group.html#index-surface-group">surface group</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Group.html#Surface-Group">Surface Group</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-handlevisibility">surface handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-hittest">surface hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-interpreter">surface interpreter</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-interruptible">surface interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-linestyle">surface linestyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-linewidth">surface linewidth</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-marker">surface marker</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-markeredgecolor">surface markeredgecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-markerfacecolor">surface markerfacecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-markersize">surface markersize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-meshstyle">surface meshstyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-normalmode">surface normalmode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-parent">surface parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-properties">surface properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-selected">surface selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-selectionhighlight">surface selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-specularcolorreflectance">surface specularcolorreflectance</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-specularexponent">surface specularexponent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-specularstrength">surface specularstrength</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-tag">surface tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-type">surface type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-uicontextmenu">surface uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-userdata">surface userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-vertexnormals">surface vertexnormals</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-visible">surface visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-xdata">surface xdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-xdatasource">surface xdatasource</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-ydata">surface ydata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-ydatasource">surface ydatasource</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-zdata">surface zdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-zdatasource">surface zdatasource</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Surface-Properties.html#index-surface-_005f_005fmodified_005f_005f">surface __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Surface-Properties.html#Surface-Properties">Surface Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="The-switch-Statement.html#index-switch-statement"><code>switch</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-switch-Statement.html#The-switch-Statement">The switch Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Which-TeX-symbols-are-implemented-in-dialog-functions_003f.html#index-symbols_002c-translation-table">symbols, translation table</a>:</td><td>&nbsp;</td><td valign="top"><a href="Which-TeX-symbols-are-implemented-in-dialog-functions_003f.html#Which-TeX-symbols-are-implemented-in-dialog-functions_003f">Which TeX symbols are implemented in dialog functions?</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Using-Octave-Mode.html#index-TAGS">TAGS</a>:</td><td>&nbsp;</td><td valign="top"><a href="Using-Octave-Mode.html#Using-Octave-Mode">Using Octave Mode</a></td></tr>
<tr><td></td><td valign="top"><a href="Test-and-Demo-Functions.html#index-test-functions">test functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Test-and-Demo-Functions.html#Test-and-Demo-Functions">Test and Demo Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Comparison-Ops.html#index-tests-for-equality">tests for equality</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comparison-Ops.html#Comparison-Ops">Comparison Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-tests-for-equality-1">tests for equality</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Which-TeX-symbols-are-implemented-in-dialog-functions_003f.html#index-TeX-symbols_002c-translation-table">TeX symbols, translation table</a>:</td><td>&nbsp;</td><td valign="top"><a href="Which-TeX-symbols-are-implemented-in-dialog-functions_003f.html#Which-TeX-symbols-are-implemented-in-dialog-functions_003f">Which TeX symbols are implemented in dialog functions?</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-backgroundcolor">text backgroundcolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-beingdeleted">text beingdeleted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-busyaction">text busyaction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-buttondownfcn">text buttondownfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-children">text children</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-clipping">text clipping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-color">text color</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-createfcn">text createfcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-deletefcn">text deletefcn</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-displayname">text displayname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-edgecolor">text edgecolor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-editing">text editing</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-erasemode">text erasemode</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-extent">text extent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-fontangle">text fontangle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-fontname">text fontname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-fontsize">text fontsize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-fontunits">text fontunits</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-fontweight">text fontweight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Objects.html#index-text-graphics-object">text graphics object</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Objects.html#Graphics-Objects">Graphics Objects</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-handlevisibility">text handlevisibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-hittest">text hittest</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-horizontalalignment">text horizontalalignment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-interpreter">text interpreter</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-interruptible">text interruptible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-linestyle">text linestyle</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-linewidth">text linewidth</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-margin">text margin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-parent">text parent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-position">text position</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-properties">text properties</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-rotation">text rotation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-selected">text selected</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-selectionhighlight">text selectionhighlight</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-string">text string</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-tag">text tag</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-type">text type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-uicontextmenu">text uicontextmenu</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-units">text units</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-userdata">text userdata</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-verticalalignment">text verticalalignment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-visible">text visible</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Text-Properties.html#index-text-_005f_005fmodified_005f_005f">text __modified__</a>:</td><td>&nbsp;</td><td valign="top"><a href="Text-Properties.html#Text-Properties">Text Properties</a></td></tr>
<tr><td></td><td valign="top"><a href="Tips-and-Standards.html#index-tips">tips</a>:</td><td>&nbsp;</td><td valign="top"><a href="Tips-and-Standards.html#Tips-and-Standards">Tips and Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Customizing-Toolkit-Behavior.html#index-toolkit-customization">toolkit customization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Customizing-Toolkit-Behavior.html#Customizing-Toolkit-Behavior">Customizing Toolkit Behavior</a></td></tr>
<tr><td></td><td valign="top"><a href="Graphics-Toolkits.html#index-toolkits_002c-graphics">toolkits, graphics</a>:</td><td>&nbsp;</td><td valign="top"><a href="Graphics-Toolkits.html#Graphics-Toolkits">Graphics Toolkits</a></td></tr>
<tr><td></td><td valign="top"><a href="Which-TeX-symbols-are-implemented-in-dialog-functions_003f.html#index-translation-table-for-TeX-symbols">translation table for TeX symbols</a>:</td><td>&nbsp;</td><td valign="top"><a href="Which-TeX-symbols-are-implemented-in-dialog-functions_003f.html#Which-TeX-symbols-are-implemented-in-dialog-functions_003f">Which TeX symbols are implemented in dialog functions?</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-transpose">transpose</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-transpose-1">transpose</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-transpose_002c-complex_002dconjugate">transpose, complex-conjugate</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-transpose_002c-complex_002dconjugate-1">transpose, complex-conjugate</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Trouble.html#index-troubleshooting">troubleshooting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Trouble.html#Trouble">Trouble</a></td></tr>
<tr><td></td><td valign="top"><a href="The-try-Statement.html#index-try-statement"><code>try</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-try-Statement.html#The-try-Statement">The try Statement</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Arithmetic-Ops.html#index-unary-minus">unary minus</a>:</td><td>&nbsp;</td><td valign="top"><a href="Arithmetic-Ops.html#Arithmetic-Ops">Arithmetic Ops</a></td></tr>
<tr><td></td><td valign="top"><a href="Operator-Overloading.html#index-unary-minus-1">unary minus</a>:</td><td>&nbsp;</td><td valign="top"><a href="Operator-Overloading.html#Operator-Overloading">Operator Overloading</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-undefined-behavior">undefined behavior</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-undefined-function-value">undefined function value</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="The-unwind_005fprotect-Statement.html#index-unwind_005fprotect-statement"><code>unwind_protect</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-unwind_005fprotect-Statement.html#The-unwind_005fprotect-Statement">The unwind_protect Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="The-unwind_005fprotect-Statement.html#index-unwind_005fprotect_005fcleanup"><code>unwind_protect_cleanup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-unwind_005fprotect-Statement.html#The-unwind_005fprotect-Statement">The unwind_protect Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Comments.html#index-use-of-comments">use of comments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Comments.html#Comments">Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="User_002ddefined-Data-Types.html#index-user_002ddefined-data-types">user-defined data types</a>:</td><td>&nbsp;</td><td valign="top"><a href="User_002ddefined-Data-Types.html#User_002ddefined-Data-Types">User-defined Data Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Functions-and-Scripts.html#index-user_002ddefined-functions">user-defined functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Functions-and-Scripts.html#Functions-and-Scripts">Functions and Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-user_002ddefined-variables">user-defined variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html#Variables">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Java-Interface.html#index-using-Octave-with-Java">using Octave with Java</a>:</td><td>&nbsp;</td><td valign="top"><a href="Java-Interface.html#Java-Interface">Java Interface</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-V">V</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html#index-varargin"><code>varargin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html#Variable_002dlength-Argument-Lists">Variable-length Argument Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Return-Lists.html#index-varargout"><code>varargout</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Return-Lists.html#Variable_002dlength-Return-Lists">Variable-length Return Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html#index-variable_002dlength-argument-lists">variable-length argument lists</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Argument-Lists.html#Variable_002dlength-Argument-Lists">Variable-length Argument Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable_002dlength-Return-Lists.html#index-variable_002dlength-return-lists">variable-length return lists</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable_002dlength-Return-Lists.html#Variable_002dlength-Return-Lists">Variable-length Return Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Variables.html#index-variables_002c-global">variables, global</a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Variables.html#Global-Variables">Global Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Persistent-Variables.html#index-variables_002c-persistent">variables, persistent</a>:</td><td>&nbsp;</td><td valign="top"><a href="Persistent-Variables.html#Persistent-Variables">Persistent Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Variables.html#index-variables_002c-user_002ddefined">variables, user-defined</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variables.html#Variables">Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectorization-and-Faster-Code-Execution.html#index-vectorization">vectorization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectorization-and-Faster-Code-Execution.html#Vectorization-and-Faster-Code-Execution">Vectorization and Faster Code Execution</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectorization-and-Faster-Code-Execution.html#index-vectorize">vectorize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectorization-and-Faster-Code-Execution.html#Vectorization-and-Faster-Code-Execution">Vectorization and Faster Code Execution</a></td></tr>
<tr><td></td><td valign="top"><a href="Startup-Files.html#index-version-startup-file">version startup file</a>:</td><td>&nbsp;</td><td valign="top"><a href="Startup-Files.html#Startup-Files">Startup Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Concept-Index_cp_letter-W">W</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Issuing-Warnings.html#index-warning-ids">warning ids</a>:</td><td>&nbsp;</td><td valign="top"><a href="Issuing-Warnings.html#Issuing-Warnings">Issuing Warnings</a></td></tr>
<tr><td></td><td valign="top"><a href="Copying.html#index-warranty">warranty</a>:</td><td>&nbsp;</td><td valign="top"><a href="Copying.html#Copying">Copying</a></td></tr>
<tr><td></td><td valign="top"><a href="The-while-Statement.html#index-while-statement"><code>while</code> statement</a>:</td><td>&nbsp;</td><td valign="top"><a href="The-while-Statement.html#The-while-Statement">The while Statement</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-wrong-answers">wrong answers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-wrong-answers-1">wrong answers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Concept-Index_cp_symbol-1"><b>#</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-2"><b>%</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-3"><b>-</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-4"><b>.</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-5"><b>:</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-6"><b>\</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_symbol-7"><b>~</b></a>
 &nbsp; 
<br>
<a class="summary-letter" href="#Concept-Index_cp_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Concept-Index_cp_letter-W"><b>W</b></a>
 &nbsp; 
</td></tr></table>


<hr>
<div class="header">
<p>
Next: <a href="Function-Index.html#Function-Index" accesskey="n" rel="next">Function Index</a>, Previous: <a href="Copying.html#Copying" accesskey="p" rel="prev">Copying</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Concept-Index" title="Index" rel="index">Index</a>]</p>
</div>



</body>
</html>