MaplePrimes Questions

Maple needs proper sparse linear algebra. That means a data structure where row or column operations (good luck getting both) can be done in linear time and algorithms such as structured Gaussian elimination or iterative methods run in O(A) time, where A is the number of non-zero elements in the matrix.
Maple 11's implcitplot command contains a cool option to reduce the line count of a plot. I would like a separate command for this, along with the corresponding generalization (level of detail) to 3d plots. I think it would be good to apply this sort of thing automatically to make plots faster and also to make larger more detailed plots possible. I also think that the 3d plot facility is far too limited in terms of the number of polygons it can handle. It should be replaced with something capable of "millions of triangles per second", because that's what any $10 integrated graphics chip ca
A colleague has asked me this: The integral int(exp(-x)/sqrt(x^2-1),x=1..infinity) is equal to BesselK(0,1). Is it possible to get Maple to make this evaluation? I (or he) would be grateful for any ideas.
How do I use Maple to apply depth-first search to a graph to obtain a depth-first search of numbering of the verticies. Once again I need to input my graph in order to retrieve this information. How does Maple provide this info based off my graph?
In exercise is Trees-- How do I use the breadth-first search algorithm to find a spanning tree for a connected graph. (Start with A, and use alphabetical order whrn there is a choice for a predecessor). So the bottom line is I have a graph and listed in the text and I want to import it in maple in order to figure out the above info. I have used the command prompt but none seem to have what I am looking for. I am a new user, I have tried to modify preset graphs, however I need to have the ability to determine data from my graphs. Please provide help. I am also trying to use the (ISTREE) function but it still does not provide me with the data I am looking for.
I got a set of instructions that i need to compute but i cannot put it all to work like one program or algorithm. i can only put it in bits. I have figured out how to put in Bessel function of a first kind, then how to derive it and few other things. But I am having trouble putting it all together. It isnt connecting for some reason. I assign name and then sub. I guess I don’t know how to do the algorithm. Maybe some other stuff is wrong. Im not sure. I hope someone here can help me perform these computations. I am at a beginner lever and hope you guys can help me out here. At the moment I have access to Maple7. Somebody from the department may help me get Maple11.
I want to use Compiler:-Compile for a function with a numerical vector v:= [1.0,2.0,3.0,4.0]; as initialized variable. The help refers to CodeGeneration/Details where it says: "The CodeGeneration functions can analyze some rtable type declarations and constructors within procedures. Data types, dimensions and ranges are recognized, but most options are ignored. The only initializer accepted is a list. Dimensions and ranges must have integer values ..." I did:
foo:=proc(x::float)
local v::Vector(1..4,datatype=float[8], order= Fortran_order);
v:= [1.0,2.0,3.0,4.0];
return x*v[1];
hi.. if i have the command like this(below), how can i plot histogram in a range (0..1)? data1 := (RandomTools:-Generate)(list(float(range = 0 .. 1, method = uniform), 100)) after that, how about the source code for random generator in maple10? can anyone help me? thanks...
hi! Can Somebody tell me how to implement the equivalent of Mathematica's Split function with two arguments: Split[list] splits list into sublists consisting of runs of identical elements. Split[list, test] treats pairs of adjacent elements as identical whenever applying the function test to them yields True in Maple. Thanks, Raj
Hi! I'm trying to plot a graph of (u^2/sin^2(k))-(v^2/cos^2(k)) where the value of k varies. i've found the kind of command that plots multiple lines on the same graph: plot({seq((x-k)^2,k=0..5)},x=-10..10); but am not sure how to change it to produce a graph with multiple lines on for my function which has both u and v that vary. Thanks
Hi I need to animate the Screw of Archimedes using maple, I tried animate3d and insequence=true and both don't work. This is the screw. plot3d([a*cos(x),a*sin(x),3*x],a=-15..15,x=1..8*Pi,axes=framed,scaling=constrained,color=gold,numpoints=4000,style=patch); This is the center cilinder. with(plots):plot2:=implicitplot3d([x^2+y^2=40,z],x=-15..15,y=-15..15,z=1..24*Pi,axes=framed,color=yellow,numpoints=5000); I should also make a function that "lays" on the screw, and a point should be visible going upwards, this should make the water that gets pumped up by the rotating move.
Need help pointplotting series of curves. thanks, TL

Maple Equation

Maple Equation

Maple Equation

Maple Equation

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:
First 2321 2322 2323 2324 2325 2326 2327 Last Page 2323 of 2416