MaplePrimes Questions

I have a long file and i would like to only pick up some parts to run sometime. Does anybody know how to change multiple commander lines to miltiple comment lines? What i know is that # can change one commander line to comment line. Thanks a lot!
Hi, all! Perhaps this is an obvious question for experienced users, but it's given me some trouble as a newbie... many thanks for anyone who can help me with this... I'm trying to find a way to return the indices of a selected subset of an array (or matrix, or whatever, I'm not picky.) Here's a simple example of what I'm talking about. Here's some actual Maple input/output that I ran:
> foo := Array( 1..10 , i -> i ) * 2;

           foo := [ 2 4 6 8 10 12 14 16 18 20 ]

> bar := select( x -> ( x mod 3 = 0 ) , foo );

           bar := [ NULL NULL 6 NULL NULL 12 NULL NULL 18 NULL ]
This is my system: rho * diff(diff(delta(x, y, t), t), t) = (y ^ 2 / 0.2e1 - d ^ 2 / 0.8e1) * Y * diff(diff(diff(diff(xi(x, y, t), x), x), x), x) + (((2 * G + lambda) * v - lambda) * diff(diff(xi(x, y, t), x), x)) + 0.16e2 * Q(t) ^ 2 * y * (d ^ 2 - 0.2e1 * y ^ 2) / d ^ 4 / b ^ 2 / l ^ 2 / e; diff(delta(x, y, t), y) = v * y * diff(diff(xi(x, y, t), x), x); i = 0.8e1 * Df * Q(t) / d ^ 2 + l * Lp * (int((2 * G + lambda * (v - 1)) * diff(diff(xi(x, y, t), x), x), x == (0..b)) + Y * d ^ 2 * int(diff(diff(diff(diff(xi(x, y, t), x), x), x), x), x == (0..b)) / 0.12e2) + diff(Q(t), t); My objective is to obtain the expression of delta,xi and Q to the space coordinates(x,y) and time,t.The other letters are constants. Can the maple do this? I try with pdsolve but obtain this error:
I have a function with two arguments and want -- as the first argument gets fixed -- to transform it to a function with just one argument. The difficulty is that I use for the function definition the same symbols as in the worksheet where those symbols are assigned to numerical values. The main problem is, as the following minimal example shows, that the variable A is not evaluated during the definition of function g(). > a:=1: > b:=2: > f:=(a,b)->a+b; (a, b) -> a + b > A:=3.5: > g:=b->f(A,b); b -> f(A, b) > g(0); 3.5 # O.K. > A:=4:
I want to creat a Matrix A with every emement in A Digits:=20,How can I do?A:=Matrix(n,n,?) waiting for your help!
Hello, I have a simple problem of the type; x = L(x)*x Where x is a column vector (2) and L(x) is a 2 by 2 matrix (function of x). I want maple to solve this equation for x. I just don't know what is the function to do this ("solve" doesn't work).
how can i import data from an excel spreadsheet into maple10? (please don't tell me i can only to it with maple11). cheers, jake
Hi, I am using the networks package to try to find out the total number of paths between two vertices of a graph. The graph I am interested in is basically a square grid with a diagonal from the lower left to the upper right. I want to find the total number of paths from the lower left vertex to the upper right vertex according to the following rules. 1. Can only move right 2. Can only move up 3. Can only move up the diagonal. So I wrote a procedure that would produce such a directed graph for any n. For any n the graph has n^2 vertices but only edges that meet the criterion given above.
I have a sheet in Maple 10 which I want to re-run in Maple 11. It contains a very lengthy (piecewise defined) function f(m) to be integrated over the Reals (numerical) and dito for exp(m)*f(m). The results are certainly ~ 1. In M10 this caused problems which can be overcome using method= _NCRule (I got the advice here ...) in both the cases, the result came up fast. In M11 I killed the execution, it needs to long. While integrating f(m) can be done by the NAG routines, that does not work for exp(m)*f(m). Certainly I could split up at the breaks for piecewise - but can somebody explain *why* it 'fails' now? And: no, I do not want to split up manually.
Set up a double loop in maple with the parameter "a" runing from 0 to 2 in steps of 0.02 and b running from -1 to 1 in steps of 0.02. Within de double loop set, set X0=a+b*I and compute 10 Newtons iterates. If X10 is close to 0, say absolute value of X10<0.1 then the iterates converge to 0. Color the pixel at (a,b) black if the iterates converge to 0 and white if not.
"Note": The equation to be set is X^3-3*X^2+2*X
Please help me in here, is due to tomorrow, and I've been trying all this week but I don't have any clue.
Best Regards,
Franklin...
Hello, I am new to Maple (I am used to Mathematica 5.2). I have a differential equation which can be solved numerically (evolution of the scale factor of the Universe containing matter, radiation and dark energy). I've figured out how to use the interactive dsolve() to produce two dimesional plots of R vs. t, yet I'd like to make a nice 3D plot (in cylindrical coordinates) with [R ,R ,t] axes. Having a symbolic solution I would use Mathematica with something like: ParametricPlot3D[{R[t] Cos[x], R[t] Sin[x], t}, {t, -1, 3}, {x, 0, 2Pi}]; In the interactive dsolve() mode Maple offers 3-D plot but it is not what I want...
Could someone help me please to incorporate the command for unique common solutions into a programme. I have a list of values a and b where x ==a(mod e) x==b(mod d) I have the following list of [a,b] pairs: [[0, 0], [1, 1], [0, 2], [1, 3], [0, 4], [1, 5], [0, 6], [1, 0], [0, 1], [1, 2], [0, 3], [1, 4], [0, 5], [1, 6], [0, 0]] I now need to write a procedure where I apply the following command: chrem([a,b],[e,d]) to find the unique common solutions for the listed pairs of a and b. for example chrem([1, 4], [2, 11]) = 15, where e (e=2) and d (d=11) are coprimes. Any hints on how I use each pair of a and b from the above list to generate a list for unique solutions using the chrem command would be most welcome.
Hello everybody, In the following code I wish to print a 6*N table. When I let the array run from 1..5 everything works fine. However I wish to run it from 0..5 as shown below. Once I do so the output looks completely messed up. Whats the matter with starting the array from 0? > mu := 'mu': > mu := array(0 .. 5, 1 .. N): > for n to N do > for S from 0 to 5 do > mu[S, n] := lambda[n]*baseleadtime[S] > end do; > end do; > print(mu); THX in advance.. Fred
It would be great if someone could give me a lead on this: I have 3 sets: A={1,3,4,8}, B={5,6,9}, C={2,0,7}. Is there a command in Maple that can produce all possible combinations of all numbers involved in 3 sets so that I could get the following result: [A1,B1,C1], [A2,B1,C1], [A3,B1,C1], [A4,B1,C1], [A1,B2,C1] etc I have tried the following but the result is: > comb(({1, 3, 4, 8}, {5, 6, 9}, {0, 2, 7}), 3); print(comb({1, 3, 4, 8}, {5, 6, 9}, {0, 2, 7}, 3)); comb({1, 3, 4, 8}, {5, 6, 9}, {0, 2, 7}, 3) thanks...
Hello I am trying to plot the same function over several different values for comparison. My problem is that whenever a plot is drawn, the axis is rescaled to fit the contents, for example in the following code > restart; > ReZ:=sin(omega); ReZ := sin(omega) > ImZ:=cos(omega); ImZ := cos(omega) > plot([ReZ,ImZ,omega=0..0.5]); > plot([ReZ,ImZ,omega=0..1]); The axis values differ, but the plots look exactly the same, which makes it very hard to compare them. I haven't been able to find a way to define the axis ranges i need so any suggestions would be appreciated
First 2214 2215 2216 2217 2218 2219 2220 Last Page 2216 of 2308