MaplePrimes Posts

MaplePrimes Posts are for sharing your experiences, techniques and opinions about Maple, MapleSim and related products, as well as general interests in math and computing.

Latest Post
  • Latest Posts Feed
  • Some commands change the internal state of the calculation, so the results have to be different each time. For example, if x is 1, entering x:=x+1; repeatedly obviously yields values of x that count up. A less obvious way that a command can do different things different times it is used is if it includes the % reference to the previous result. Then, the result from the command will depend on what the previous result was. It is less confusing to assign a name to a result you want to use again, rather than referring to it with %.
    To undefine x, enter x:='x'; To restart Maple with its memory cleared, enter restart.
    Help with using the simple Maple Commands
    Any questions that apply to plotting in Maple will appear here.

    A1: You forgot to specify a range on the independent variable.

     > f:=2-x;
     > plot(f);              WRONG
     Plotting error, empty plot
     > plot(f,x=-1..1);      RIGHT
     

    A2: You might be plotting a quantity that isn't defined. For example, you might have defined Y but then asked Maple to plot y. Maple is case-sensitive, and many strange behaviors are the result of typing a variable name in the wrong case.

    Another way a plotted quantity can be undefined is if you didn't use the assignment operator := to define it.

     > y=sin(x);              WRONG
    
    When you open a Maple worksheet you must execute it to get the variables defined. You can do this by stepping through the commands from the beginning, or by clicking on the execute all button on the toolbar which looks like this, !!!
    Click on "File" and select "Print" from the menu.
    Instead of trying to follow the numerous Help menus, try entering ?topic to go directly to the help page you want. For example, to get help with the int (integration command), enter ?int at the Maple prompt. You will working examples for each command at the bottom of the help page for the command.
    Maple's syntax is very intuitive and not complicated. The best way to learn how to use Maple is to take The New User's Tour . The New User's Tour presents the fundamental Maple commands that every user should be aware of. The tour covers many areas of Maple, including: The Maple Worksheet Environment, Numerical Calculations, Algebraic Computations, Graphics, Calculus, Differential Equations, Linear Algebra, Finance and Statistics, Programming, and Online Help. The tour is easy to proceed through, and it can take up to two hours if all topics are examined. In order to start The New User's Tour you should go to Help --> New User's Tour .
    First 299 300 301 Page 301 of 301