Maple Questions and Posts

These are Posts and Questions associated with the product, Maple
Sorry, I guess that less-than, greater than are not allowed directly in posts. In Maple10/11 there is the new statistics package, which is pretty cool. And there are lots of examples on how to create a custom continuous distribution, but not on creating custom discrete distributions. for example: U := Distribution(PDF = (t -> piecewise(t < 0, 0, t < 3, 1/3, 0))); Is a great example of creating a continuous distribution, but how can I create something similiar that is discrete? Any examples are appreciated!! Thx Cameron
I have a matrix for which the elements have imaginary components which are quite small. For purposes of readabililty I removed the imaginary components as follows: A:=map(x->Re(x),A); However, I was wondering - Is there any I could have displayed the matrix showing just the real components without actually getting rid of the imaginary ones? Also, the components are displaying to 10 decimal digits which is awkward. I know if I set Digits:=5 for example, the diaplay would be more readable but I don't want the calculations to be done with that level of precision. Is there any way I ca
How do I use maple 11 to solve the following problem? I am trying to upload my graph however the system is not allowing me to do so. Any pointers? The question is: Use Prim's algorithm to find a minimal spanning tree for the weighted graph. Give the weight of the minimal spanning tree found
How do I use Maple 11 to determine if my graph is a rooted tree, as well as draw the rooted tree with the root at the top without the arrow heads.
How do I use Maple 11 to determine reverse Polish notation or postfix form? I can't find a example worksheet in order to plug-in my problem.

Can anyone explain to me why the argument of the innerproc, which as y is a local of the outerproc, gets evaluated more than one level?

innerproc := proc(t)
print(t[1]); # or dismantle, or lprint
end proc:

outerproc := proc(x)
local y;
y := x;
print(y[1]); # or dismantle, or lprint
innerproc(y);
end proc:

outerproc(vector(1,['exp(0)']));


acer

Hello. This is not a question, but an answer. I have just installed Maple 11 under Ubuntu 7.04 Feisty Fawn and I thought I would share my experience. 1) Log in to an account with sudo rights. 2) Insert the Maple 11 cd for Linux. When asked about what to do with it, mount it. 3) Open a terminal and write cd /cdrom sudo sh ./installMapleLinux32 4) Enter your password. 5) For the location of the installation, I entered /usr/local/maple11 instead of the default. 6) After the installation (and the activation) is complete, I created two symbolic links as follows: on the terminal, write
Hello, I would like to use Socket package to get informaction from HTML page on Website. COuld you help me please? I need to get the part of HTML file to use it in my procedure. Thank you very much Vladimir
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 to make maplet which can run some window by using builder maplet..? how its steps.. regard Hari(ary_raper@yahoo.com)
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...
First 2134 2135 2136 2137 2138 2139 2140 Last Page 2136 of 2224