gkokovidis

2370 Reputation

13 Badges

20 years, 291 days
Draeger Medical Systems, Inc.

 

 

Regards,
Georgios Kokovidis
Dräger Medical

MaplePrimes Activity


These are answers submitted by gkokovidis

From the help file. Make sure 'centername' is on the same line as the circle function. You can cut and paste each of the lines below into your own worksheet and take it from there. >restart: >with(geometry):_EnvHorizontalName:=m:_EnvVerticalName:=n: >circle(c1,[point(A,0,0), point(B,2,0),point(C,1,2)],'centername'=O1); >center(c1), coordinates(center(c1)); >Equation(c1); My three points are actually (-4,-9), (6.7), and the center is (1,-1). The second parenthesis only has on point, 6.7. Is this correct? Regards, Georgios Kokovidis
>libname:=libname,"U:\acdavid\MapleFiles\FourrierSeries"; is the problem. This is what it returns: "U:cdavidMapleFilesFourrierSeries" Try this instead. >libname:=libname,"U:/acdavid/MapleFiles/FourrierSeries"; When you execute the command with(FourierSeries) you should get this as a response: [decompose, fs, rept] If you do not, then there is an error in the path to where you have the library files located. I also noticed that in your path U:/ac.... you spelled FourierSeries with 2 r's. Again, make sure your path statement in Maple matches the exact location where you expanded the libraries from the zip file. Also notice that I changed the slashes in the path statement to forward slashes. If you do not do this, then you get that little square in the output, and Maple has not idea where the libraries are. If you continue to have problems with this, send a reply with the exact location that you are using and the exact name of the directory that the files are in and we'll take it from there. I tried this in Maple 9.5 and it works just fine. Regards, Georgios Kokovidis
The worksheet that is referenced was created for Maple 10 but it should work for version 9.5 as well. "rept" is not a Maple 10 function. It is part of the library that needs to get loaded, which is included in the zip file. Create a temp directory and extract the contents of the zip file there. Then in a fresh Maple 9.5 worksheet, that is also created in the same temp directory that the zip file was extracted to, copy and paste the commands from the html version of the worksheet. Once you load the package, everything should work as advertised. Regards, Georgios Kokovidis
The following link points to a worksheet located at the Maple Applications Center. It looks like it will do what you want, with repeating waveforms. You must be a registered user in order to access it. Registration is free. http://www.maplesoft.com/applications/app_center_view.aspx?AID=2035 Regards, Georgios Kokovidis
Try this: >restart: >with(student): >slope([22,100.19],[95,600.19]); >?slope for more information and the proper way to call this function. Ideally, you should fit your line with a function, and then take the derivative of that function. The above will give you the slope from a pair of points. Notice that there is one set of brackets surrounding the pair of points. Regards, Georgios Kokovidis
Look at the link below from the Applications Center. It does exactly what you are asking. http://www.maplesoft.com/applications/app_center_view.aspx?AID=978&CID=10&SCID=148 Regards, Georgios Kokovidis
The following is from the help pages for sqrt: Note: Maple does not simplify sqrt(x^2) to x. This is wrong for negative x. Maple returns (x^2)^(1/2). Sometimes, because of the context of your work, you know that this transformation is valid. If the symbolic option is specified, and signum(x) is not known, then sqrt applies transformation (7), effectively assuming that x is positive. Note, it is also possible to force the sqrt function to make a simplification by making the appropriate assumption, for example, assume(x>0). See ?sqrt for more details. This may answer you question, or add more doubt. Good luck either way. Regards, Georgios Kokovidis
As a starting point, take a look at the link below. It is a worksheet from the Maple Applications Center. Register to login in and then download the worksheet. In general, post worksheets or code from worksheets. Not to many people will open a Word doc or any other document for that matter and try to type in what you have in that document. If I can cut and paste your code to evaluate it, then I can try to help. If I have to start from scratch, then it depends on whether or not the particular problem is of interest to me. Like everybody else, time is limited. Hope this link helps. http://www.maplesoft.com/applications/app_center_view.aspx?AID=1919 Regards, Georgios Kokovidis
?unapply at the Maple prompt. Regards, Georgios Kokovidis
>restart: >x:=[3,4,5]; >f:=x->sin(x); >map(f,x); >evalf(%); You can avoid the call to evalf by making the original list of numbers floats, as follows: >x:=[3.,4.,5.]; >f:=x->sin(x); >map(f,x); A simple direct approach is to combine map with the function directly. >map(sin,x); Depending on how x was defined, you will get an answer in floats or a symbolic version. Regards, Georgios Kokovidis
Finding a more "comprehensive" manual than the one written by Maple might be tough. I prefer to download worksheets that others have created from the application center and study them. I execute them line by line and look at the results. Then I modify them and see what happens. The guide below is from the application center. You have to login in ordere to access it. http://www.maplesoft.com/applications/app_center_view.aspx?AID=1864 Regards, Georgios Kokovidis
Click on Tools-Options-Display and look at the first checkbox. It says "Automatically display legends in 2-D plot". Uncheck that box and see if your problem goes away after you re-execute your worksheet. Regards, Georgios Kokovidis
A good starting point would be the help page associated with the command for solving differential equations. There are examples there that you can cut and paste into your own worksheet, to solve your specific problem. You can also follow the links within the help page to take you further along with other methods for a wide variety of solution techniques, depending on the problem at hand. At the Maple prompt, type ?dsolve and hit the enter key. >?dsolve If you have a particular problem that is alluding you, post it here. Otherwise, try some of the examples in the help page and see how they work. Regards, Georgios Kokovidis
See the Statistics package and more specifically the fit function within the Statistics package. >?Statistics for more help. The link below is from a previous post that sounds similar to what you are trying to do. http://www.mapleprimes.com/forum/surface-fit-with-boundary-conditions Regards, Georgios Kokovidis
>restart: >assume(z,complex); >sol:=solve(3*(z)^2-1 <= -abs(conjugate(z))^2,z); sol := RealRange(-1/2, 1/2) Regards, Georgios Kokovidis
First 63 64 65 66 67 68 69 Last Page 65 of 75