Windows installer: Update texinfo.
[maxima.git] / doc / info / Runtime.texi
blob986441a08bb708ad2e5344b54bc2b1898d94a7e6
1 @menu
2 * Introduction for Runtime Environment::  
3 * Interrupts::                  
4 * Functions and Variables for Runtime Environment::  
5 @end menu
7 @c -----------------------------------------------------------------------------
8 @node Introduction for Runtime Environment, Interrupts, Runtime Environment, Runtime Environment
9 @section Introduction for Runtime Environment
10 @c -----------------------------------------------------------------------------
12 @c THIS DISCUSSION OF maxima-init.mac REPLACES AN EARLIER WRITE-UP. !!!
13 @c HOWEVER IT SEEMS THAT THIS TEXT REALLY WANTS TO BE UNDER A DIFFERENT HEADING. !!!
15 @cindex maxima-init.mac
16 @cindex maxima-init.lisp
18 @code{maxima-init.mac} and @code{maxima-init.lisp} are loaded automatically when Maxima
19 starts. @code{maxima-init.mac} contains Maxima code and is loaded using @mref{batchload},
20 @code{maxima-init.lisp} contains Lisp code and is loaded using @mref{load}.
22 You can use @code{maxima-init.mac} (and @code{maxima-init.lisp}) to customize your Maxima
23 environment. These files typically placed in the directory named by
24 @code{maxima_userdir}, although it can be in any directory searched by the function
25 @code{file_search}.
27 Here is an example @code{maxima-init.mac} file:
29 @example
30 setup_autoload ("specfun.mac", ultraspherical, assoc_legendre_p);
31 showtime:all;
32 @end example
34 In this example, @code{setup_autoload} tells Maxima to load the
35 specified file
36 (@code{specfun.mac}) if any of the functions (@code{ultraspherical},
37 @code{assoc_legendre_p}) are called but not yet defined.
38 Thus you needn't remember to load the file before calling the functions.
40 The statement @code{showtime: all} tells Maxima to set the @code{showtime}
41 variable.  The @code{maxima-init.mac} file can contain any other assignments or
42 other Maxima statements.
44 @code{maxima-init.mac} and @code{maxima-init.lisp} are loaded automatically when Maxima
45 starts. @code{maxima-init.mac} contains Maxima code and is loaded using @mref{batchload},
46 @code{maxima-init.lisp} contains Lisp code and is loaded using @mref{load}.
49 @cindex maximarc
51 @code{maximarc} is sourced by the maxima script at startup. It should be located in @code{$MAXIMA_USERDIR}.
52 If Maxima was compiled with several Lisp compilers, @code{maximarc} can be used, e.g., to change the
53 user's default lisp implementation. E.g. to select CMUCL create a @code{maximarc} file containing the line:
54 @code{MAXIMA_LISP=cmucl}
56 You can also use the command option @code{-l <lisp>} or @code{--lisp=<lisp>} to select the Lisp when starting Maxima.
58 @cindex .xmaximarc
60 In the file @code{.xmaximarc} (in the users home directory) Xmaxima stores personal settings.
62 @cindex .xmaxima_history
64 In the file @code{.xmaxima_history} (in the users home directory) Xmaxima stores the command history.
66 @opencatbox{Categories:}
67 @category{Session management}
68 @closecatbox
70 @c -----------------------------------------------------------------------------
71 @node Interrupts, Functions and Variables for Runtime Environment, Introduction for Runtime Environment, Runtime Environment
72 @section Interrupts
73 @c -----------------------------------------------------------------------------
75 The user can stop a time-consuming computation with the
76 ^C (control-C) character.
77 The default action is to stop the computation
78 and print another user prompt.
79 In this case, it is not possible to restart a stopped computation.
81 If the Lisp variable @code{*debugger-hook*} is set to @code{nil}, by executing
83 @example
84 :lisp (setq *debugger-hook* nil)
85 @end example
87 @noindent
88 then upon receiving ^C, Maxima will enter the Lisp debugger,
89 and the user may use the debugger to inspect the Lisp environment.
90 The stopped computation can be restarted by entering
91 @code{continue} in the Lisp debugger.
92 The means of returning to Maxima from the Lisp debugger
93 (other than running the computation to completion)
94 is different for each version of Lisp.
96 On Unix systems, the character ^Z (control-Z) causes Maxima
97 to stop altogether, and control is returned to the shell prompt.
98 The @code{fg} command causes Maxima
99 to resume from the point at which it was stopped.
101 @opencatbox{Categories:}
102 @category{Console interaction}
103 @closecatbox
105 @c end concepts Runtime Environment
107 @c -----------------------------------------------------------------------------
108 @node Functions and Variables for Runtime Environment,  , Interrupts, Runtime Environment
109 @section Functions and Variables for Runtime Environment
110 @c -----------------------------------------------------------------------------
112 @c -----------------------------------------------------------------------------
113 @anchor{maxima_tempdir}
114 @defvr {System variable} maxima_tempdir
116 @code{maxima_tempdir} names the directory in which Maxima creates some temporary
117 files.  In particular, temporary files for plotting are created in
118 @code{maxima_tempdir}.
120 The initial value of @code{maxima_tempdir} is the user's home directory, if
121 Maxima can locate it; otherwise Maxima makes a guess about a suitable directory.
123 @code{maxima_tempdir} may be assigned a string which names a directory.
125 @opencatbox{Categories:}
126 @category{Global variables}
127 @closecatbox
128 @end defvr
130 @c -----------------------------------------------------------------------------
131 @anchor{maxima_userdir}
132 @defvr {System variable} maxima_userdir
134 @code{maxima_userdir} names a directory which Maxima searches to find Maxima and
135 Lisp files.  (Maxima searches some other directories as well;
136 @code{file_search_maxima} and @code{file_search_lisp} are the complete lists.)
138 The initial value of @code{maxima_userdir} is a subdirectory of the user's home
139 directory, if Maxima can locate it; otherwise Maxima makes a guess about a
140 suitable directory.
142 @code{maxima_userdir} may be assigned a string which names a directory.
143 However, assigning to @code{maxima_userdir} does not automatically change
144 @code{file_search_maxima} and @code{file_search_lisp};
145 those variables must be changed separately.
147 @opencatbox{Categories:}
148 @category{Global variables}
149 @closecatbox
150 @end defvr
152 @c -----------------------------------------------------------------------------
153 @anchor{room}
154 @deffn  {Function} room @
155 @fname{room} () @
156 @fname{room} (true) @
157 @fname{room} (false)
159 Prints out a description of the state of storage and
160 stack management in Maxima.  @code{room} calls the Lisp function of 
161 the same name.
163 @itemize @bullet
164 @item
165 @code{room ()} prints out a moderate description.
166 @item
167 @code{room (true)} prints out a verbose description.
168 @item
169 @code{room (false)} prints out a terse description.
170 @end itemize
172 @opencatbox{Categories:}
173 @category{Debugging}
174 @closecatbox
175 @end deffn
177 @c -----------------------------------------------------------------------------
178 @anchor{sstatus}
179 @deffn {Function} sstatus (@var{keyword}, @var{item})
181 When @var{keyword} is the symbol @code{feature}, @var{item} is put on the list
182 of system features.  After @code{sstatus (keyword, item)} is executed,
183 @code{status (feature, item)} returns @code{true}.  If @var{keyword} is the
184 symbol @code{nofeature}, @var{item} is deleted from the list of system features.
185 This can be useful for package writers, to keep track of what features they have
186 loaded in.
188 See also @mrefdot{status}
190 @opencatbox{Categories:}
191 @category{Programming}
192 @closecatbox
193 @end deffn
195 @c -----------------------------------------------------------------------------
196 @anchor{status}
197 @deffn  {Function} status @
198 @fname{status} (@code{feature}) @
199 @fname{status} (@code{feature}, @var{item})
201 Returns information about the presence or absence of certain system-dependent 
202 features.
204 @itemize @bullet
205 @item
206 @code{status (feature)} returns a list of system features. These include Lisp 
207 version, operating system type, etc. The list may vary from one Lisp type to 
208 another.
210 @item 
211 @code{status (feature, item)} returns @code{true} if @var{item} is on the
212 list of items returned by @code{status (feature)} and @code{false} otherwise.
213 @code{status} quotes the argument @var{item}. The quote-quote operator 
214 @code{'@w{}'} defeats quotation. A feature whose name contains a special 
215 character, such as a hyphen, must be given as a string argument. For example,
216 @code{status (feature, "ansi-cl")}.
217 @end itemize
219 See also @mrefdot{sstatus}
221 The variable @code{features} contains a list of features which apply to 
222 mathematical expressions. See @code{features} and @code{featurep} for more 
223 information.
225 @opencatbox{Categories:}
226 @category{Programming}
227 @closecatbox
228 @end deffn
230 @c NEEDS CLARIFICATION
232 @c -----------------------------------------------------------------------------
233 @anchor{system}
234 @deffn {Function} system (@var{command})
236 Executes @var{command} as a separate process.  The command is passed to the
237 default shell for execution.  @code{system} is not supported by all operating
238 systems, but generally exists in Unix and Unix-like environments.
240 Supposing @code{_hist.out} is a list of frequencies which you wish to plot as a
241 bar graph using @code{xgraph}.
243 @example
244 (%i1) (with_stdout("_hist.out",
245            for i:1 thru length(hist) do (
246              print(i,hist[i]))),
247        system("xgraph -bar -brw .7 -nl < _hist.out"));
248 @end example
250 In order to make the plot be done in the background (returning control to
251 Maxima) and remove the temporary file after it is done do:
253 @example
254 system("(xgraph -bar -brw .7 -nl < _hist.out;  rm -f _hist.out)&")
255 @end example
256 @end deffn
258 @c -----------------------------------------------------------------------------
259 @anchor{time}
260 @deffn {Function} time (%o1, %o2, %o3, @dots{})
262 Returns a list of the times, in seconds, taken to compute the output lines
263 @code{%o1}, @code{%o2}, @code{%o3}, @dots{} The time returned is Maxima's
264 estimate of the internal computation time, not the elapsed time.  @code{time}
265 can only be applied to output line variables; for any other variables,
266 @code{time} returns @code{unknown}.
268 Set @code{showtime: true} to make Maxima print out the computation time 
269 and elapsed time with each output line.
271 @opencatbox{Categories:}
272 @category{Debugging}
273 @closecatbox
274 @end deffn
276 @c -----------------------------------------------------------------------------
277 @anchor{timedate}
278 @deffn {Function} timedate @
279 @fname{timedate} (@var{T}, @var{tz_offset}) @
280 @fname{timedate} (@var{T}) @
281 @fname{timedate} ()
283 @code{timedate(@var{T}, @var{tz_offset})} returns a string
284 representing the time @var{T} in the time zone @var{tz_offset}.
285 The string format is @code{YYYY-MM-DD HH:MM:SS.NNN[+|-]ZZ:ZZ}
286 (using as many digits as necessary to represent the fractional part)
287 if @var{T} has a nonzero fractional part,
288 or @code{YYYY-MM-DD HH:MM:SS[+|-]ZZ:ZZ} if its fractional part is zero.
290 @var{T} measures time, in seconds, since midnight, January 1, 1900,
291 in the GMT time zone.
293 @var{tz_offset} measures the offset of the time zone, in hours,
294 east (positive) or west (negative) of GMT.
295 @var{tz_offset} must be an integer, rational, or float between -24 and 24, inclusive.
296 If @var{tz_offset} is not a multiple of 1/60, 
297 it is rounded to the nearest multiple of 1/60.
299 @code{timedate(@var{T})} is equivalent to @code{timedate(@var{T}, @var{tz_offset})}
300 with @var{tz_offset} equal to the offset of the local time zone.
302 @code{timedate()} is equivalent to @code{timedate(absolute_real_time())}.
303 That is, it returns the current time in the local time zone.
305 Example:
307 @code{timedate} with no argument returns a string representing the current time and date.
309 @c ===beg===
310 @c d : timedate ();
311 @c print ("timedate reports current time", d) $
312 @c ===end===
313 @example
314 (%i1) d : timedate ();
315 (%o1)                      2010-06-08 04:08:09+01:00
316 (%i2) print ("timedate reports current time", d) $
317 timedate reports current time 2010-06-08 04:08:09+01:00
318 @end example
320 @code{timedate} with an argument returns a string representing the argument.
322 @c ===beg===
323 @c timedate (0);
324 @c timedate (absolute_real_time () - 7*24*3600);
325 @c ===end===
326 @example
327 (%i1) timedate (0);
328 (%o1)                      1900-01-01 01:00:00+01:00
329 (%i2) timedate (absolute_real_time () - 7*24*3600);
330 (%o2)                      2010-06-01 04:19:51+01:00
331 @end example
333 @code{timedate} with optional timezone offset.
335 @c ===beg===
336 @c timedate (1000000000, -9.5);
337 @c ===end===
338 @example
339 (%i1) timedate (1000000000, -9.5);
340 (%o1)               1931-09-09 16:16:40-09:30
341 @end example
343 @opencatbox{Categories:}
344 @category{Time and date functions}
345 @closecatbox
346 @end deffn
348 @c -----------------------------------------------------------------------------
349 @anchor{parse_timedate}
350 @deffn  {Function} parse_timedate @
351 @fname{parse_timedate} (@var{S})
353 Parses a string @var{S} representing a date or date and time of day
354 and returns the number of seconds since midnight, January 1, 1900 GMT.
355 If there is a nonzero fractional part, the value returned is a rational number,
356 otherwise, it is an integer.
357 @code{parse_timedate} returns @code{false}
358 if it cannot parse @var{S} according to any of the allowed formats.
360 The string @var{S} must have one of the following formats,
361 optionally followed by a timezone designation:
363 @itemize @bullet
364 @item
365 @code{YYYY-MM-DD[ T]hh:mm:ss[,.]nnn}
366 @item
367 @code{YYYY-MM-DD[ T]hh:mm:ss}
368 @item
369 @code{YYYY-MM-DD}
370 @end itemize
372 where the fields are year, month, day, hours, minutes, seconds, and fraction of a second,
373 and square brackets indicate acceptable alternatives.
374 The fraction may contain one or more digits.
376 Except for the fraction of a second,
377 each field must have exactly the number of digits indicated:
378 four digits for the year, and two for the month, day of the month, hours, minutes, and seconds.
380 A timezone designation must have one of the following forms:
382 @itemize @bullet
383 @item
384 @code{[+-]hh:mm}
385 @item
386 @code{[+-]hhmm}
387 @item
388 @code{[+-]hh}
389 @item
390 @code{Z}
391 @end itemize
393 where @code{hh} and @code{mm} indicate hours and minutes east (@code{+}) or west (@code{-}) of GMT.
394 The timezone may be from +24 hours (inclusive) to -24 hours (inclusive).
396 A literal character @code{Z} is equivalent to @code{+00:00} and its variants,
397 indicating GMT.
399 If no timezone is indicated,
400 the time is assumed to be in the local time zone.
402 Any leading or trailing whitespace (space, tab, newline, and carriage return) is ignored,
403 but any other leading or trailing characters cause @code{parse_timedate} to fail and return @code{false}.
405 See also @mref{timedate} and @mrefdot{absolute_real_time}
407 Examples:
409 Midnight, January 1, 1900, in the local time zone, in each acceptable format.
410 The result is the number of seconds the local time zone
411 is ahead (negative result) or behind (positive result) GMT.
412 In this example, the local time zone is 8 hours behind GMT.
414 @c ===beg===
415 @c parse_timedate ("1900-01-01 00:00:00,000");
416 @c parse_timedate ("1900-01-01 00:00:00.000");
417 @c parse_timedate ("1900-01-01T00:00:00,000");
418 @c parse_timedate ("1900-01-01T00:00:00.000");
419 @c parse_timedate ("1900-01-01 00:00:00");
420 @c parse_timedate ("1900-01-01T00:00:00");
421 @c parse_timedate ("1900-01-01");
422 @c ===end===
423 @example
424 (%i1) parse_timedate ("1900-01-01 00:00:00,000");
425 (%o1)                         28800
426 (%i2) parse_timedate ("1900-01-01 00:00:00.000");
427 (%o2)                         28800
428 (%i3) parse_timedate ("1900-01-01T00:00:00,000");
429 (%o3)                         28800
430 (%i4) parse_timedate ("1900-01-01T00:00:00.000");
431 (%o4)                         28800
432 (%i5) parse_timedate ("1900-01-01 00:00:00");
433 (%o5)                         28800
434 (%i6) parse_timedate ("1900-01-01T00:00:00");
435 (%o6)                         28800
436 (%i7) parse_timedate ("1900-01-01");
437 (%o7)                         28800
438 @end example
440 Midnight, January 1, 1900, GMT, in different indicated time zones.
442 @c ===beg===
443 @c parse_timedate ("1900-01-01 19:00:00+19:00");
444 @c parse_timedate ("1900-01-01 07:00:00+07:00");
445 @c parse_timedate ("1900-01-01 01:00:00+01:00");
446 @c parse_timedate ("1900-01-01Z");
447 @c parse_timedate ("1899-12-31 21:00:00-03:00");
448 @c parse_timedate ("1899-12-31 13:00:00-11:00");
449 @c parse_timedate ("1899-12-31 08:00:00-16:00");
450 @c ===end===
451 @example
452 (%i1) parse_timedate ("1900-01-01 19:00:00+19:00");
453 (%o1)                           0
454 (%i2) parse_timedate ("1900-01-01 07:00:00+07:00");
455 (%o2)                           0
456 (%i3) parse_timedate ("1900-01-01 01:00:00+01:00");
457 (%o3)                           0
458 (%i4) parse_timedate ("1900-01-01Z");
459 (%o4)                           0
460 (%i5) parse_timedate ("1899-12-31 21:00:00-03:00");
461 (%o5)                           0
462 (%i6) parse_timedate ("1899-12-31 13:00:00-11:00");
463 (%o6)                           0
464 (%i7) parse_timedate ("1899-12-31 08:00:00-16:00");
465 (%o7)                           0
466 @end example
468 @opencatbox{Categories:}
469 @category{Time and date functions}
470 @closecatbox
471 @end deffn
473 @c -----------------------------------------------------------------------------
474 @anchor{encode_time}
475 @deffn {Function} encode_time @
476 @fname{encode_time} (@var{year}, @var{month}, @var{day}, @var{hours}, @var{minutes}, @var{seconds}, @var{tz_offset}) @
477 @fname{encode_time} (@var{year}, @var{month}, @var{day}, @var{hours}, @var{minutes}, @var{seconds})
479 Given a time and date specified by
480 @var{year}, @var{month}, @var{day}, @var{hours}, @var{minutes}, and @var{seconds},
481 @code{encode_time} returns the number of seconds (possibly including a fractional part)
482 since midnight, January 1, 1900 GMT.
484 @var{year} must be an integer greater than or equal to 1899.
485 However, 1899 is allowed only if the resulting encoded time is greater than or equal to 0.
487 @var{month} must be an integer from 1 to 12, inclusive.
489 @var{day} must be an integer from 1 to @var{n}, inclusive,
490 where @var{n} is the number of days in the month specified by @var{month}.
492 @var{hours} must be an integer from 0 to 23, inclusive.
494 @var{minutes} must be an integer from 0 to 59, inclusive.
496 @var{seconds} must be an integer, rational, or float
497 greater than or equal to 0 and less than 60.
498 When @var{seconds} is not an integer,
499 @code{encode_time} returns a rational,
500 such that the fractional part of the return value is equal to the fractional part of @var{seconds}.
501 Otherwise, @var{seconds} is an integer, and the return value is likewise an integer.
503 @var{tz_offset} measures the offset of the time zone, in hours,
504 east (positive) or west (negative) of GMT.
505 @var{tz_offset} must be an integer, rational, or float between -24 and 24, inclusive.
506 If @var{tz_offset} is not a multiple of 1/3600, 
507 it is rounded to the nearest multiple of 1/3600.
509 If @var{tz_offset} is not present, the offset of the local time zone is assumed.
511 See also @mrefdot{decode_time}
513 Examples:
515 @c ===beg===
516 @c encode_time (1900, 1, 1, 0, 0, 0, 0);
517 @c encode_time (1970, 1, 1, 0, 0, 0, 0);
518 @c encode_time (1970, 1, 1, 8, 30, 0, 8.5);
519 @c encode_time (1969, 12, 31, 16, 0, 0, -8);
520 @c encode_time (1969, 12, 31, 16, 0, 1/1000, -8);
521 @c % - 2208988800;
522 @c ===end===
523 @example
524 (%i1) encode_time (1900, 1, 1, 0, 0, 0, 0);
525 (%o1)                           0
526 (%i2) encode_time (1970, 1, 1, 0, 0, 0, 0);
527 (%o2)                      2208988800
528 (%i3) encode_time (1970, 1, 1, 8, 30, 0, 8.5);
529 (%o3)                      2208988800
530 (%i4) encode_time (1969, 12, 31, 16, 0, 0, -8);
531 (%o4)                      2208988800
532 (%i5) encode_time (1969, 12, 31, 16, 0, 1/1000, -8);
533                           2208988800001
534 (%o5)                     -------------
535                               1000
536 (%i6) % - 2208988800;
537                                1
538 (%o6)                         ----
539                               1000
540 @end example
542 @opencatbox{Categories:}
543 @category{Time and date functions}
544 @closecatbox
545 @end deffn
547 @c -----------------------------------------------------------------------------
548 @anchor{decode_time}
549 @deffn {Function} decode_time @
550 @fname{decode_time} (@var{T}, @var{tz_offset}) @
551 @fname{decode_time} (@var{T})
553 Given the number of seconds (possibly including a fractional part)
554 since midnight, January 1, 1900 GMT,
555 returns the date and time as represented by a list comprising
556 the year, month, day of the month, hours, minutes, seconds, and time zone offset.
558 @var{tz_offset} measures the offset of the time zone, in hours,
559 east (positive) or west (negative) of GMT.
560 @var{tz_offset} must be an integer, rational, or float between -24 and 24, inclusive.
561 If @var{tz_offset} is not a multiple of 1/3600, 
562 it is rounded to the nearest multiple of 1/3600.
564 If @var{tz_offset} is not present, the offset of the local time zone is assumed.
566 See also @mrefdot{encode_time}
568 Examples:
570 @c ===beg===
571 @c decode_time (0, 0);
572 @c decode_time (0);
573 @c decode_time (2208988800, 9.25);
574 @c decode_time (2208988800);
575 @c decode_time (2208988800 + 1729/1000, -6);
576 @c decode_time (2208988800 + 1729/1000);
577 @c ===end===
578 @example
579 (%i1) decode_time (0, 0);
580 (%o1)               [1900, 1, 1, 0, 0, 0, 0]
581 (%i2) decode_time (0);
582 (%o2)             [1899, 12, 31, 16, 0, 0, - 8]
583 (%i3) decode_time (2208988800, 9.25);
584                                           37
585 (%o3)              [1970, 1, 1, 9, 15, 0, --]
586                                           4
587 (%i4) decode_time (2208988800);
588 (%o4)             [1969, 12, 31, 16, 0, 0, - 8]
589 (%i5) decode_time (2208988800 + 1729/1000, -6);
590                                       1729
591 (%o5)           [1969, 12, 31, 18, 0, ----, - 6]
592                                       1000
593 (%i6) decode_time (2208988800 + 1729/1000);
594                                       1729
595 (%o6)           [1969, 12, 31, 16, 0, ----, - 8]
596                                       1000
597 @end example
599 @opencatbox{Categories:}
600 @category{Time and date functions}
601 @closecatbox
602 @end deffn
604 @c -----------------------------------------------------------------------------
605 @anchor{absolute_real_time}
606 @deffn {Function} absolute_real_time ()
608 Returns the number of seconds since midnight, January 1, 1900 GMT.
609 The return value is an integer.
611 See also @mref{elapsed_real_time} and @mrefdot{elapsed_run_time}
613 Example:
615 @c ===beg===
616 @c absolute_real_time ();
617 @c 1900 + absolute_real_time () / (365.25 * 24 * 3600);
618 @c ===end===
619 @example
620 (%i1) absolute_real_time ();
621 (%o1)                      3385045277
622 (%i2) 1900 + absolute_real_time () / (365.25 * 24 * 3600);
623 (%o2)                   2007.265612087104
624 @end example
626 @opencatbox{Categories:}
627 @category{Time and date functions}
628 @closecatbox
629 @end deffn
631 @c -----------------------------------------------------------------------------
632 @anchor{elapsed_real_time}
633 @deffn {Function} elapsed_real_time ()
635 Returns the number of seconds (including fractions of a second)
636 since Maxima was most recently started or restarted.
637 The return value is a floating-point number.
639 See also @mref{absolute_real_time} and @mrefdot{elapsed_run_time}
641 Example:
643 @c ===beg===
644 @c elapsed_real_time ();
645 @c expand ((a + b)^500)$
646 @c elapsed_real_time ();
647 @c ===end===
648 @example
649 (%i1) elapsed_real_time ();
650 (%o1)                       2.559324
651 (%i2) expand ((a + b)^500)$
652 (%i3) elapsed_real_time ();
653 (%o3)                       7.552087
654 @end example
656 @opencatbox{Categories:}
657 @category{Time and date functions}
658 @closecatbox
659 @end deffn
661 @c -----------------------------------------------------------------------------
662 @anchor{elapsed_run_time}
663 @deffn {Function} elapsed_run_time ()
665 Returns an estimate of the number of seconds (including fractions of a second)
666 which Maxima has spent in computations since Maxima was most recently started
667 or restarted.  The return value is a floating-point number.
669 See also @mref{absolute_real_time} and @mrefdot{elapsed_real_time}
671 Example:
673 @c ===beg===
674 @c elapsed_run_time ();
675 @c expand ((a + b)^500)$
676 @c elapsed_run_time ();
677 @c ===end===
678 @example
679 (%i1) elapsed_run_time ();
680 (%o1)                         0.04
681 (%i2) expand ((a + b)^500)$
682 (%i3) elapsed_run_time ();
683 (%o3)                         1.26
684 @end example
686 @opencatbox{Categories:}
687 @category{Time and date functions}
688 @closecatbox
689 @end deffn