Here are some helpful hints that might make your life a little easier when you're using Maple:
eqns := {x + y = 1, b * x - 1/3 * y = c}:
vars := {x, y}:
sols := solve(eqns, vars);
{ b a - c 3 c + a }
sols := {y = 3 -------, x = ------- }
{ 3 b + 1 3 b + 1 }
assign(sols);
x, y;
b a - c 3 c + a
3 -------, -------
3 b + 1 3 b + 1
with(linalg):
A:=array((1..2,1..2),[[cos(x)^2,0],[0,sin(x)^2]]);
[ 2 ]
[ cos(x) 0 ]
A := [ ]
[ 2 ]
[ 0 sin(x) ]
B:=array((1..2,1..2),[[sin(x)^2,0],[0,cos(x)^2]]);
[ 2 ]
[ sin(x) 0 ]
B := [ ]
[ 2 ]
[ 0 cos(x) ]
C:=add(A,B);
[ 2 2 ]
[ cos(x) + sin(x) 0 ]
C := [ ]
[ 2 2 ]
[ 0 cos(x) + sin(x) ]
map(simplify,C);
[ 1 0 ]
[ ]
[ 0 1 ]
XAPPLRESDIR=$HOME/app-defaults/ export XAPPLRESDIR
source .bashrc
MapleV*background: name_of_the_color
MapleV*foreground: name_of_the_color
MapleV*promptcolor: name_of_the_color
MapleV*canvas.background: name_of_the_color
MapleV*canvas.foreground: name_of_the_color
The first line changes the background where the different buttons are.
The second line changes the color of the text on these buttons.
The third line changes the color of the maple prompt.
The fourth line changes the background color where the commands are written.
The last line changes the foreground color where the command are written.
Alternatively, you could add the above lines to your .Xdefaults file.
In the example below, we use the psfig command to include a PostScript file called mapleplot.ps. The width of the plot will be 5 inches, and it will be rotated by 270 degrees to make appear in portrait orientation. It will also be centered horizontally on the page.
\par \centerline{
\psfig{figure=mapleplot.ps,bbllx=56pt,bblly=65pt,bburx=556pt,
bbury=726pt,width=5in,angle=270}
} \par
Click on an item listed below to access additional information on a variety of Maple-related topics.
Return to the Software page.
Return to ACS home page.
Please send comments and suggestions to
consult@rpi.edu