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
|
@menu
* Documentation::
* Functions and Variables for Help::
@end menu
@c -----------------------------------------------------------------------------
@node Documentation, Functions and Variables for Help, Help, Help
@section Documentation
@c -----------------------------------------------------------------------------
@c SHOULD TALK ABOUT OTHER FORMS OF DOCUMENTATION ASIDE FROM ON-LINE MANUAL.
The Maxima on-line user's manual can be viewed in different forms. From the
Maxima interactive prompt, the user's manual is viewed as plain text by the
@mref{?} command (i.e., the @mref{describe} function). The user's manual is
viewed as @code{info} hypertext by the @code{info} viewer program and as a
web page by any ordinary web browser.
@mref{example} displays examples for many Maxima functions. For example,
@example
(%i1) example (integrate);
@end example
yields
@example
(%i2) test(f):=block([u],u:integrate(f,x),ratsimp(f-diff(u,x)))
(%o2) test(f) := block([u], u : integrate(f, x),
ratsimp(f - diff(u, x)))
(%i3) test(sin(x))
(%o3) 0
(%i4) test(1/(x+1))
(%o4) 0
(%i5) test(1/(x^2+1))
(%o5) 0
@end example
and additional output.
@opencatbox
@category{Console interaction}
@closecatbox
@c -----------------------------------------------------------------------------
@node Functions and Variables for Help, , Documentation, Help
@section Functions and Variables for Help
@c -----------------------------------------------------------------------------
@c -----------------------------------------------------------------------------
@anchor{apropos}
@deffn {Function} apropos (@var{name})
Searches for Maxima names which have @var{name} appearing anywhere
within them; @var{name} must be a string or symbol. Thus, @code{apropos
(exp)} returns a list of all the flags and functions which have
@code{exp} as part of their names, such as @code{expand}, @code{exp},
and @code{exponentialize}. So, if you can only remember part of the name
of a Maxima command or variable, you can use this command to find the
rest of the name. Similarly, you can type @code{apropos (tr_)} to find
a list of many of the switches relating to the translator, most of which
begin with @code{tr_}.
@code{apropos("")} returns a list with all Maxima names.
@code{apropos} returns the empty list @code{[]}, if no name is found.
Example:
Show all Maxima symbols which have @code{gamma} in the name:
@c ===beg===
@c apropos("gamma");
@c apropos(gamma);
@c length(apropos(""));
@c ===end===
@example
@group
(%i1) apropos("gamma");
(%o1) [%gamma, Gamma, gamma_expand, gammalim, makegamma,
prefer_gamma_incomplete, gamma, gamma-incomplete, gamma_incomplete,
gamma_incomplete_generalized, gamma_incomplete_generalized_regularized,
gamma_incomplete_lower, gamma_incomplete_regularized, log_gamma]
@end group
The same example, using the symbol @code{gamma}, rather than the string:
@group
(%i2) apropos(gamma);
(%o2) [%gamma, Gamma, gamma_expand, gammalim, makegamma,
prefer_gamma_incomplete, gamma, gamma-incomplete, gamma_incomplete,
gamma_incomplete_generalized, gamma_incomplete_generalized_regularized,
gamma_incomplete_lower, gamma_incomplete_regularized, log_gamma]
@end group
The number of symbols in the current Maxima session. This will vary.
@group
(%i3) length(apropos(""));
(%o3) 2338
@end group
@end example
@opencatbox
@category{Help}
@closecatbox
@end deffn
@c -----------------------------------------------------------------------------
@anchor{demo}
@deffn {Function} demo (@var{filename})
Evaluates Maxima expressions in @var{filename} and displays the results.
@code{demo} pauses after evaluating each expression and continues after the
user enters a carriage return. (If running in Xmaxima, @code{demo} may need
to see a semicolon @code{;} followed by a carriage return.)
@code{demo} searches the list of directories @mref{file_search_demo} to find
@code{filename}. If the file has the suffix @code{dem}, the suffix may be
omitted. See also @mrefdot{file_search}
@code{demo} evaluates its argument.
@code{demo} returns the name of the demonstration file.
Example:
@example
(%i1) demo ("disol");
batching /home/wfs/maxima/share/simplification/disol.dem
At the _ prompt, type ';' followed by enter to get next demo
(%i2) load("disol")
_
(%i3) exp1 : a (e (g + f) + b (d + c))
(%o3) a (e (g + f) + b (d + c))
_
(%i4) disolate(exp1, a, b, e)
(%t4) d + c
(%t5) g + f
(%o5) a (%t5 e + %t4 b)
_
@end example
@opencatbox
@category{Help}
@category{Console interaction}
@category{File input}
@closecatbox
@end deffn
@c -----------------------------------------------------------------------------
@anchor{describe}
@fnindex Help
@deffn {Function} describe @
@fname{describe} (@var{string}) @
@fname{describe} (@var{string}, exact) @
@fname{describe} (@var{string}, inexact)
@code{describe(@var{string})} is equivalent to
@code{describe(@var{string}, exact)}.
@code{describe(@var{string}, exact)} finds an item with title equal
(case-insensitive) to @var{string}, if there is any such item.
@code{describe(@var{string}, inexact)} finds all documented items which contain
@var{string} in their titles. If there is more than one such item, Maxima asks
the user to select an item or items to display.
At the interactive prompt, @code{? foo} (with a space between @code{?} and
@code{foo}) is equivalent to @code{describe("foo", exact)}, and @code{?? foo}
is equivalent to @code{describe("foo", inexact)}.
@code{describe("", inexact)} yields a list of all topics documented in the
on-line manual.
@code{describe} quotes its argument. @code{describe} returns @code{true} if
some documentation is found, otherwise @code{false}.
See also @ref{Documentation}.
Example:
@example
(%i1) ?? integ
0: Functions and Variables for Elliptic Integrals
1: Functions and Variables for Integration
2: Introduction to Elliptic Functions and Integrals
3: Introduction to Integration
4: askinteger (Functions and Variables for Simplification)
5: integerp (Functions and Variables for Miscellaneous Options)
6: integer_partitions (Functions and Variables for Sets)
7: integrate (Functions and Variables for Integration)
8: integrate_use_rootsof (Functions and Variables for
Integration)
9: integration_constant_counter (Functions and Variables for
Integration)
10: nonnegintegerp (Functions and Variables for linearalgebra)
Enter space-separated numbers, `all' or `none': 7 8
-- Function: integrate (<expr>, <x>)
-- Function: integrate (<expr>, <x>, <a>, <b>)
Attempts to symbolically compute the integral of <expr> with
respect to <x>. `integrate (<expr>, <x>)' is an indefinite
integral, while `integrate (<expr>, <x>, <a>, <b>)' is a
definite integral, [...]
-- Option variable: integrate_use_rootsof
Default value: `false'
When `integrate_use_rootsof' is `true' and the denominator of
a rational function cannot be factored, `integrate' returns
the integral in a form which is a sum over the roots (not yet
known) of the denominator.
[...]
@end example
In this example, items 7 and 8 were selected (output is shortened as indicated
by @code{[...]}). All or none of the items could have been selected by entering
@code{all} or @code{none}, which can be abbreviated @code{a} or @code{n},
respectively.
@opencatbox
@category{Help}
@category{Console interaction}
@closecatbox
@end deffn
@c -----------------------------------------------------------------------------
@anchor{example}
@deffn {Function} example @
@fname{example} (@var{topic}) @
@fname{example} ()
@code{example (@var{topic})} displays some examples of @var{topic}, which is a
symbol or a string. To get examples for operators like @code{if}, @code{do},
or @code{lambda} the argument must be a string, e.g. @code{example ("do")}.
@code{example} is not case sensitive. Most topics are function names.
@code{example ()} returns the list of all recognized topics.
The name of the file containing the examples is given by the global option
variable @mrefcomma{manual_demo} which defaults to @code{"manual.demo"}.
@code{example} quotes its argument. @code{example} returns @code{done} unless
no examples are found or there is no argument, in which case @code{example}
returns the list of all recognized topics.
Examples:
@c ===beg===
@c example(append);
@c example("lambda");
@c ===end===
@example
@group
(%i1) example(append);
(%i2) append([y+x,0,-3.2],[2.5e+20,x])
(%o2) [y + x, 0, - 3.2, 2.5e+20, x]
(%o2) done
@end group
(%i3) example("lambda");
(%i4) lambda([x,y,z],x^2+y^2+z^2)
2 2 2
(%o4) lambda([x, y, z], x + y + z )
(%i5) %(1,2,a)
2
(%o5) a + 5
(%i6) 1+2+a
(%o6) a + 3
(%o6) done
@end example
@opencatbox
@category{Help}
@category{Console interaction}
@closecatbox
@end deffn
@c -----------------------------------------------------------------------------
@anchor{manual_demo}
@defvr {Option variable} manual_demo
Default value: @code{"manual.demo"}
@code{manual_demo} specifies the name of the file containing the examples for
the function @code{example}. See @mrefdot{example}
@opencatbox
@category{Help}
@category{Global variables}
@closecatbox
@end defvr
|