Maple interpretes several characters differently than other programming languages:
evalb tests if the matrices are
at the same storage location; equal tests them
as equal.
plot1 := plot(sin(x), x=0 .. 2 * Pi):
plot2 := plot([[1,2], [3,4]], style=point):
plots[display]({plot1, plot2});
insequence=true. Finally, Play the plot
by clicking the right mouse button on the plot and selecting
the Animation submenu.
`pkg_name/proc_name`, where pkg_name
is the name of the package and proc_name the name of
the procedure. An alternative is to use a subscripted name
pkg_name['proc_name'] for the procedures in the
package. In any case, pkg_name must be protected.
readlib is used to load a previously
saved procedure. The global Maple variable
libname contains the paths to all the directories
that are searched for the procedure.
with ``points'' a selected procedure or an
entire package to their short names. The names
of the procedures in the package are retrieved from a Maple table that has
to be stored in the variable pkg_name before
issuing the with command. Each proc_name
has an entry of the form
pkg_name[proc_name] := 'readlib(`pkg_name/proc_name`)';
pkg_name[proc_name] := proc...end;
?proc_name retrieves the help file from
a library. The help file is stored in the database maple.hdb
by the makehelp command.
©1997 Erich Kaltofen. Permission to use layout provided that copyright notice is not removed.