Product Tips & Techniques

Tips and Tricks on how to get the most about Maple and MapleSim
Hello everybody,

I want to determine the value for the variable S in 2 cases in the following function so that tfr=.85 is reached for both cases. First I tried to do this by solving the equation setting it equal to .85 which unfortunately did not work and then I tried to increase S successively until the minimum .85 would be reached. However, non of my attempts worked out as you can see below. I would be more than grateful if you could help me to solve this problem.

<code>

Target Fill Rate for all Bases

>tfr := 0.85

Average Base Pipeline for Minimum Lead Time

>basepipemin[1] := 0.2; basepipemin[2] := 1.8;
So I've been all over these forums everyday since I got a new Vista laptop hoping to find a solution to the Maple/Vista issues. First it looked as if Maple simply would not work, then I found some metheds that dealt with changing certain appearance features before the install to get Maple to install, but the major complaint in all of this was the inability to open and save files. I finally got everything to work and want share the process with others. I posted this as a reply already, but felt that it warrented it's own thread since I'm probably not the only one looking for a concrete answer. The purpose here is to document a method that worked for me with an appropriate title so it can easily be found. Hopefully I'm not out of line in doing so, and hopefully this isn't a repost proving that I am a horrible searcher.:)
Since I like working with wood - I just couldn't resist . . . a Maple Coffee Table
this is the eqaution given X=a+bI and my proffessor want this to be inside the double loop. variable a is from 1 to 2 with a interval of .02. the variable b is from -1 to 1 with a interval of .02. this is what it should look like for a from 0 by 0.02 while a
Hello everybody, I am trying to model a simple logistical problem in Maple using a double loop and 2 indices to indicate what parameters the solutions belong to. Maple however doesn't give me any output or error in the following setting: p[1] := 1; p[2] := 4; for n to 2 do for s to 10 do EBO[s, p[n]] := sum((x-s)*p[n]^x*evalf(exp(-p[n]))/factorial(x), x = s+1 .. infinity) end do end do THX for all your help in advance, Fred
Hello, I'm a recent arrival at Maple Primes (as in earlier today), and I seem to recall a much older version of either Maple, Matlab, or Mathematica having a 3D plot example of a "Schauberger" tube. I've looked through my old files and can find nothing. These are similar to a tornado or water whirlpool profile, so I'm supposing that cylindrical coordinates are a suggested goemetry. A "decaying radius" spiral looped inside the "Gabriel's Horn" elsewhere on Maple Primes has a similar 3D profile, but the pipes that Herr Schauberger patented in Austria long ago also decreased in pipe diameter as the spiral radius decreased inward.
Hi, is there any other possibility to export Maple 3D graphic into VRML scene with axes and labels? When I use the plot3d(3*sin(x)*cos(y), x=-Pi..Pi, y=-Pi..Pi, style=patchnogrid,axes =framed, tickmarks=[3,3,3],grid=[50,50]); o:=%: vrml(o,`krychle.wrl`,tickback_color=brown,tickfore_color=yellow); i receive the VRML file with axes tickmarks as cubes. For an example of 3D graphics in VRML format with axes and labels see Holodraw. With best regards Roman
/ ranting on I use Win XP home on an Acer, which has an Athlon (do not care for specifica). It installs with a blank space in the directory name as default (which may cause troubles if using Open Maple with MS compilers). Installing Watcom not even gives a warning to prior installed ones (so I hope it does not matter ... say having some modifications in it [well, a backup is never a bad idea before any install ...]). It does not adapt settings from M10 (I think 9.5 -> 10 did so), i.e. global settings and style sheet had to be done again. And: it does not associate M11 to *.mws (classical sheets are my default).
Maple 11, 10, 9,.. do not work under Vista yet. After a tricky installation, File Open and File Save do no work. Mathematica 5.2 and Matlab 2007 run with no problem in the same environment. I would not rush purchasing any version of Maple if it is going to run under Vista.
I have just read a wonderful paper Magic Ink: Information Software and the Graphical Interface. The most memorable section subtitle being interactivity considered harmlful. This is a real treasure trove of wonderful design ideas for interfaces for information-rich applications.
I thought I would take up a little time to write about some of the new plotting features in Maple 11. This post will give an overview of what is in Maple 11 plotting - subsequent posts will give more details on the individual features. Let's look at each of the features mentioned on the plotting enhancements page. All of these are only for 2-D plots.
Hello, I would like to use Maple in Statistics, but I have a problem with a speed of base functions, like generation, Mean, Range and Standard deviation. Maple computes slowly than MathCad. I have 4 test functions: Test of generation speed > restart: > > Digits :=10: > > test3:=proc(N,n) > local i,a,X; > use Statistics in > X := RandomVariable(Normal(0,1)): > for i from 1 to N do > a:=Sample(X,n): > end do: > end use; > end proc: > time(test3(30000,100)); Test of Mean speed > restart: > Digits :=10;
Hello, I need to create a picture in eps format to use it in LaTex Document. I use plotsetup to create it but the output is not worked corretly. In Maple 8 it workes. plotsetup(ps,plotoutput=`plot.ps`,plotoptions=`portrait,noborder`); and then I use some plot command. I am not able to compile the maple output in LaTexPdf. I try to open it in CorelDraw and it is opened, but I am not able to work with it like I am able with Maple 8 output. Why? Is it different format of eps? Could you help me please? How could I create eps file to use in LaTeX? Thank you very much. Vladimir
Hello, I would like to use Maple instead of Matlab, well I rewrite the Matlab code to Maple like following. The output is correct, but it spends more time than in Matlab. Is it possible to rewrite my Maple code to get output faster? restart: linearni_model:=proc(beta,sigma) local n1,n2,Y,X,Y1,Y2,se,se2,t1,t2,t3,t4,vbeta,t,si2,e1,e2,e3,e4,Yp,N,s2,n; use Statistics in X:=Matrix([[1, 1, 1, 1, 1], [1, 1, 1, 1, -1], [1, 1, 1, -1, 1], [1, 1, 1, -1, -1], [1, 1, -1, 1, 1], [1, 1, -1, 1, -1], [1, 1, -1, -1, 1], [1, 1, -1, -1, -1], [1, -1, 1, 1, 1], [1, -1, 1, 1, -1], [1, -1, 1, -1, 1], [1, -1, 1, -1, -1], [1, -1, -1, 1, 1], [1, -1, -1, 1, -1], [1, -1, -1, -1, 1], [1, -1, -1, -1, -1]]);
Hello, I would like to use sum command to compute sum. > A := Matrix(3, 2, {(1, 1) = 1, (1, 2) = 2, (2, 1) = 2, (2, 2) = 3, (3, 1) = 3, (3, 2) = 4}); > sum(A[k, 1], k = 1 .. 3); Error, bad index into Matrix Why it occures an error? If I use sum over list, it works. How can I sum members of 1st column of Matrix? Thanks Vladimir
First 53 54 55 56 57 58 59 Last Page 55 of 65