comparison doc/interpreter/java.txi @ 17097:e7a059a9a644

doc: Use XREF as anchor prefix in documentation for clearer results in Info viewer. Correctly use @xref, @pxref, @ref macros in documentation. * doc/interpreter/arith.txi, doc/interpreter/basics.txi, doc/interpreter/container.txi, doc/interpreter/debug.txi, doc/interpreter/diagperm.txi, doc/interpreter/eval.txi, doc/interpreter/external.txi, doc/interpreter/func.txi, doc/interpreter/install.txi, doc/interpreter/interp.txi, doc/interpreter/intro.txi, doc/interpreter/java.txi, doc/interpreter/matrix.txi, doc/interpreter/munge-texi.pl, doc/interpreter/numbers.txi, doc/interpreter/package.txi, doc/interpreter/plot.txi, doc/interpreter/sparse.txi, doc/interpreter/stats.txi, doc/interpreter/strings.txi, doc/interpreter/system.txi, doc/interpreter/var.txi, doc/interpreter/vectorize.txi, libinterp/corefcn/error.cc, libinterp/corefcn/qz.cc, libinterp/corefcn/regexp.cc, scripts/general/accumarray.m, scripts/general/structfun.m, scripts/miscellaneous/edit.m, scripts/miscellaneous/setfield.m, scripts/miscellaneous/warning_ids.m, scripts/optimization/fminbnd.m, scripts/optimization/fzero.m, scripts/optimization/lsqnonneg.m: Use XREF as anchor prefix in documentation for clearer results in Info viewer. Correctly use @xref, @pxref, @ref macros in documentation. * scripts/plot/line.m: Remove extra ')' in @deftypefn. * libgui/src/qtinfo/parser.cc(find_ref): Change doc anchor search pattern to XREF.
author Rik <rik@octave.org>
date Sat, 27 Jul 2013 10:49:21 -0700
parents 7eff3032d144
children f2a8592b8fbd
comparison
equal deleted inserted replaced
17096:33037eddecd2 17097:e7a059a9a644
149 @end menu 149 @end menu
150 150
151 @c ------------------------------------------------------------------------ 151 @c ------------------------------------------------------------------------
152 @node How to distinguish between Octave and Matlab? 152 @node How to distinguish between Octave and Matlab?
153 @subsection How to distinguish between Octave and Matlab? 153 @subsection How to distinguish between Octave and Matlab?
154 @anchor{docXFAQ} 154 @anchor{XREFFAQ}
155 @c - index - 155 @c - index -
156 @cindex Octave and @sc{matlab}, how to distinguish between 156 @cindex Octave and @sc{matlab}, how to distinguish between
157 @c - index - 157 @c - index -
158 158
159 Octave and @sc{matlab} are very similar, but handle Java slightly different. 159 Octave and @sc{matlab} are very similar, but handle Java slightly different.
314 @cindex memory, limitations 314 @cindex memory, limitations
315 315
316 In order to execute Java code Octave creates a Java Virtual Machine (JVM). 316 In order to execute Java code Octave creates a Java Virtual Machine (JVM).
317 Such a JVM allocates a fixed amount of initial memory and may expand this pool 317 Such a JVM allocates a fixed amount of initial memory and may expand this pool
318 up to a fixed maximum memory limit. The default values depend on the Java 318 up to a fixed maximum memory limit. The default values depend on the Java
319 version (see @ref{docXjavamem,,javamem}). The memory pool is shared by all 319 version (@pxref{XREFjavamem,,javamem}). The memory pool is shared by all
320 Java objects running in the JVM@. This strict memory limit is intended mainly 320 Java objects running in the JVM@. This strict memory limit is intended mainly
321 to avoid that runaway applications inside web browsers or in enterprise servers 321 to avoid that runaway applications inside web browsers or in enterprise servers
322 can consume all memory and crash the system. When the maximum memory limit is 322 can consume all memory and crash the system. When the maximum memory limit is
323 hit, Java code will throw exceptions so that applications will fail or behave 323 hit, Java code will throw exceptions so that applications will fail or behave
324 unexpectedly. 324 unexpectedly.