Maple Questions and Posts

These are Posts and Questions associated with the product, Maple
Hi, I would like to be able to plot a 3d surface of one variable, with another variable in colour on that surface. This plot should have a legend for the colour variable. At a stretch, I would also like to have all of this in polar co-ordinates, with polar axes and without having to write a transform myself. Is all this possible! cheers
Hi, I am using the global optimization toolbox to minimize a matlab function as follows: restart; > (Matlab:-evalM)("cd 'C:/Documents and Settings/user/Maple'"); > mat2map1 := proc(a, b) local Res,res; Matlab:-setvar(\"a\",a); Matlab:-setvar(\"b\",b); Matlab:-evalM(\"result = mat2map1(a,b)\"); Res:=Matlab:-getvar(\"result\"); res:=convert(Res,float); return res; end proc; > with(GlobalOptimization): > infolevel[GlobalOptimization] := 3: > GlobalSolve(mat2map1, a = 0 .. 5, b = 0 .. 5); When I run this I get the following error message:
I have two small questions: 1. Given a list L: L:=[false, false, true, true, FAIL,false]; and I want to get the positions of "FAIL" (in this case 5) and false (1,2,6). HOW could I get that? 2. Now, given another list Z with the same number of elements: Z:=[z1,z2,z3,z4,z5,z6]; I would like to replace the values of FAIL by 0 (zero). (in the way that Z became: Z:=[z1,z2,z3,z4,0,z6];) It is possible to do that without using "for do" commands? Thanks in advance, JJacques
Hi dear Maple's gurus. I have the lists a and b: a:=[A, B, C] b:= [[K1,L1][K2,L2][K3,L3]] I want to add the each term of "a" in the intervals given in "b": sum(A from L1 to K1)+ ..+sum(C from L3 to K3). I tried with this procedure: > sums:= proc(a,b) local j,tot; tot:=0; for j from 1 to nops(a) do tot:=tot+sum(a[j], k=b[j,2]..b[j,1]); end do: end proc: >sums([a1,a2,a3],[[ku1,kl1],[ku2,kl2],[ku3,kl3]]); 1. Is there some more efficient way to do the same? 2. I would like also that the sums on a[j] under the following 2 join conditions: 2.1. assuming that a[j] is real and positive, and
Simple question: I can't seem to use a negative number as a minimum value for a slider control (in Maplet Builder)... Is this not possible? Thanks! Bryan

Create new document (or worksheet) with content below and execute it step by step: > restart; > Eval(diff(v(z),z),z=H)==eval(diff(v(z),z),z=H); Eval(diff(v(z),z),z=H)=diff(v(H),H) > v:=z->z*H; v:=z->z*H > value((1)); H=2H As you can see, result of eval, which in this case is equivalent to subs(z=H,diff(v(z),z)), at the right side of first equation leads to wrong final result :( This...

can i use maple to solve 15 nonlinear equations in 15 unknowns in the following form: T1^2 + 5(T1T2) + 6(T1T3)+ 8 (T1T4) + 7 (T1T5) + ....... -5 (T1T15) = 0 T2^2 + 3(T2T1) + 6(T2T3) -3 (T2T4) + 5 (T2T5) + ....... -3 (T2T15) - (T1T3) = 0 where T1 + T2 + T3 + T4 + ... + T15 =1
does somebody know how to tell maple to produce "a nicer" latex output? For example in workspace I get a nice fraction > y:=1/(1-x); y:=1/(1-x); but the latex command returns > latex(y); \left( 1-x \right) ^{-1} I would like it to be something like \frac{1}{1-x}. My idea is that if maple knows how to print this as a fraction in the workspace, then the latex command could also behave like that. Any idea? Thanks in advance Jan
The Maple User Group mailing list was once the main forum for asking questions and discussing Maple. Eventually the comp.soft-sys.math.maple newsgroup was proposed and the MUG list faded away. Some answers to specific questions are archived here, and all messages from 1998-2003 are available as digests.
I am looking for the JavaDoc of com.maplesoft.openmaple.* -- is it available somewhere? It looks like the API allows me to do DAG-based calls to Maple, but parts of that API appear undocumented :-( I am working with some people in Ireland who would prefer to pass Maple DAGs rather than strings, and it sure looks like the API allows it, but it isn't fully documented. Help!
Dear all: To point: It is possible to build a variable where I can have control of 4 groups of index around the variable, how i show above. G_INDEX1 G_INDEX2 VARIABLE G_INDEX3 G_INDEX4 I apreciate very much your help. best regards JADO
Just a short question - I tried isolating U(t) below. The paper I got this from didn't give what U would be, but there shouldn't be an imaginary part - I forget what command/assumptions to use in order to get rid of it. I've attached the rest of my worksheet in case anyone wants to see it - the parameters I used in param1 were given in the paper.

Maple Equation

e1 := 30 = (0.19e-1*exp(2.5588*U(t))+0.518e-1*exp(2.6788*U(t)))*U(t);

I'm trying to graph this differential f''(x) + x/f(x)=0 where y(0)=y'(1)=0 and x is in the range of (0,1) so far I have > de := diff(y(x),x,x)+x/y(x)=0; > ics := y(0)=0, D(y)(1)=0; > dsolve({de,ics}); / 2 \ | d | x de := |---- y(x)| + ---- = 0 | 2 | y(x) \ dx / ics := y(0) = 0, D(y)(1) = 0 it is not solving. Is there anything I' doing wrong?
Hi, I want to solve a kinematics problem. I have the following DE: > eq1:=diff(v(t),t)+4.646e-4*v(t)^3-7.13e-3*v(t)^2-0.085*v(t)-2.82: Where v=v(t) is the speed and t the time. My goal is to get the space crossed in a period of time: from t=3.35 to t=4.77 (seconds). Additional info: v(3.35)=14.77 m/s v(4.77)=20.4 m/s I've tried solving this with Maple but I couldn't (I'm a Maple newbie). This is what I tried: 1) I isolate the v and dv terms equation, so that: dt=dv/(-4.646e-4*v^3+7.13e-3*v^2+0.085*v+2.82) 2) Then I integrate that to get the time is function of the speed, t=f(v).
Is there an online forum/discussion board devoted to the use of Maple in mathematics education? The forums I know about (here, usenet groups), seem mostly technical. But I have some education questions I'd like to ask - I just don't know where to ask them. cheers, Alasdair
First 2155 2156 2157 2158 2159 2160 2161 Last Page 2157 of 2165