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

Try allvalues: >allvalues(%); Regards, Georgios Kokovidis
>restart:with(plots):with(Student[Calculus1]): >f:=abs(x^3-2*x^2+1); >plot(f,x=-2..3,y=-1..4); >ExtremePoints(f,x); >evalf(%); The answers given are the x-coordinates that satisfy the min and max for your function. For more help, see ?Student[Calculus1] Regards, Georgios Kokovidis
>with(plots): >implicitplot3d(cos(.5*x)*cos(.5*z) +cos(.5*x)*cos(.5*y)+cos(.5*y)*cos(.5*z)-0.5=0, x=-Pi..Pi,y=-Pi..Pi,z=-Pi..Pi); Regards, Georgios
?implicitplot3d for more help. >with(plots): >implicitplot3d(x+y+z=3, x=-10..10, y=-10..10, z=-10..10); Regards, Georgios Kokovidis
Copy and paste the line below and see if it does what you want. printf will definitely work for this, but the output will not be in pretty print mode. You can always highlight the output afterwards and italicize/center it if you like using the toolbar menu items. printf(" X_bar[1]=Mean_SampleMeans1, S[1]^2=Var_SampleMeans1, S[1]=SD_SampleMeans1"); Regards, Georgios Kokovidis
Look at the "alias" and "macro"commands and see if they will do what you want. >?alias >?macro Regards, Georgios Kokovidis
Is it possible to mix geom3d and plot3d surfaces, and plot in the same plot? Yes,it is. >restart: >with(plots):with(geom3d): >p1:=plot3d([u,sqrt(u^3/(2-u))*cos(v), sqrt(u^3/(2-u))*sin(v)], u=0..1, v=0..2*Pi): >display(p1); >point(A, 1,2,-1): point(B, 0,0,-1): point(C, 3,0,0): >sphere(S, [point(O,0,0,0),1]): >draw(S,style=wireframe); >p2:=draw(S,style=wireframe): >display(p1,p2); Regards, Georgios Kokovidis Dräger Medical
After 20 minutes, on my workstation, it is still crunching away. I am using the Classic Interface version of Maple 10.06 on a Win XP SP2, dual Xeon workstion @ 2.4 GHz with 2.5G of ram. While Maple is doing it's thing, I can keep working on other things, like this message. If I look at Maple, I see that it is still busy, but it is not affecting anything else I do on my machine. Regards, Georgios Kokovidis
Take a look at the link below. This is from one of my previous posts that sounds similar to what you are trying to do. Scroll all the way to the bottom and look at my code. You can use that as a starting point. It plots both the 3d surfaces as well as the intersection points, but you can ommit the 3d stuff and just plot the intersection. http://www.mapleprimes.com/forum/3d-plot-intersection-of-plane-with-sphere-and-tetraeder Regards, Georgios Kokovidis
The problem is with (f). You can not have imaginary data. From the help page: All computations involving data are performed in floating-point; therefore, all data provided must have type realcons and all returned solutions are floating-point, even if the problem is specified with exact values. ?type/realcons for more info on this. Regards, Georgios Kokovidis
At the Maple prompt, type ?DEplot and hit the enter key. This will bring up the help page for DEplot with examples at the bottom of the page. To use DEplot, you must first load the package DEtools. >restart: >with(DEtools): >DEplot(t*diff(y(t),t)+2*y(t)=sin(t),y(t),t=-0.2..0.2,y=-0.2..0.2,arrows=MEDIUM); Regards, Georgios Kokovidis
...that the trig functions only take arguments in radians. Is this true ? Yes. Is there no way to use arguments in degrees for the trig functions ? There is. See link below from a previous thread. http://www.mapleprimes.com/forum/degree-mode-like-my-ti-89-has Regards, Georgios Kokovidis
This does not exist (yet). Some Matlab functions have direct equivalent Maple functions, although the names might be slightly different. Porting C code to Maple should be easier, although you might take a speed hit if the C routine is strickly numerical in nature. Any particular problem that you are trying to solve that you have code for in one environment and are looking for a Maple routine to solve? It could be that there is already a Maple package to address your needs. Regards, Georgios Kokovidis
Along the lines of Mariners' post above, export as Maple Input (.mpl) will work as well. Both the .mpl and .txt files can be open in a text editor. The difference that I noticed with the .mpl output file is that the actual execution of the commands from the worksheet is not exported, so from a development standpoint, where you can cut and paste from one editor to another, it might be beneficial. This option is not available from the Classic Worsheet Maple 10 interface, only from the Maple 10 interface. Regards, Georgios Kokovidis Dräger Medical
The modification below should return the order as you see it in the Matrix equation from your worksheet. Note that the square brackets return a list, whereas the curly brackets returns a set. There is a lot of info on this forum pertaining to the two, so you can look into it further. >equations:=[seq(lhs(ME)[i]=rhs(ME)[i],i=1..3)]; Regards, Georgios Kokovidis Dräger Medical
First 64 65 66 67 68 69 70 Last Page 66 of 75