psynapse Posted November 30, 2006 Posted November 30, 2006 Aights so this is the problem. I need to know everything there is to know about maple 9.5. Please enlighten me. If you need somewhere to start how do I graph a function. step by step please. Any help appreciated.
hotcommodity Posted December 1, 2006 Posted December 1, 2006 Don't you have a text to help you? I believe you plot a function as such: -define the function, say 2x squared-> f:=x->2*x^2; -plot it on an interval-> plot(f(x),x=-10..10,y=-10..10); That's the basic way to plot.
EvoN1020v Posted December 1, 2006 Posted December 1, 2006 If you know MATLAB, another mathematical computer program. This is assuming that MAPLE program is almost similiar to MATLAB. You have to define datas for x-axis, let use time for seconds: t=[0:0.01:10] This means that the x-axis will be starting at 0 and going in an increment of 0.01 toward 10 at the end. Then you define a function for example [math]f(x)=x^2+2x-1[/math] You type this: f=x.^2 + 2.*x - 1 (Notice the dot? It means that the x-axis will be multiplied element-by-element. This is very important to know). To plot the graph: plot(t,f) That's it. You can google for MAPLE homepage, and there should be plenty of tutorials on it.
psynapse Posted December 1, 2006 Author Posted December 1, 2006 Thanks guys I found a few useful things like ?command and such. Crisis averted.
weknowthewor Posted December 10, 2006 Posted December 10, 2006 Ihave the following link for you to help : http://wings.buffalo.edu/computing/Documentation/win/Maple9_5.htm It's best to look out...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now