Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hello there...

My name's Gilberto and i'm tryin' to make something out of one particular PDE...

Let me span it for you quick:

I'm trying to discover the solution of Cauchy's heat equation for the cirlce S1 = {x mod 2p}, given the following parameters:

ut = uxx, u(0,x) = phi(x), t > 0, x belongs to R

I'm currently thinking that my next step is solving that equation using the Poisson integral. Is that correct?

solve(exp(-x)-x = 0)

gives 'LambertW(1)' intead of '0.56' which i found by simple fixed pt iteration.

I have this commands:

> for i from 1 to 10 do x1:=1*i:  g:= x1*exp (T) -1 : T=fsolve( g,T) : y1=3*T end do;               

If i execute if i=1 the first lines will be:

x1 := 1

g := exp(T) - 1                  

T = 0.

y1 = 3 T

Now my questions are two:

 

how to covert function to expression???

View 8710_ZZZ.mw on MapleNet or Download 8710_ZZZ.mw
View file details

What are those 'Z' s represent?[File is attached]

hi all....how to find pseudo inverse in maple...like the one 'pinv' in matlab.

is there any command to generate identity matrix,zero matrix

thanks

It's been a while since I've updated my blog, but the recent Maple 12 release gives me a good opportunity to talk about some of the features I'd been working on for the past months. A few people on MaplePrimes had asked for more details about Maple 12, so I'll start by saying a bit about the new polar axes. A lot of this work was done by my colleagues in the GUI Group and they may have additional interesting things to say about the feature.

In previous versions of Maple, you could draw polar plots using the plots[polarplot] command or with the coords=polar option, but these were always displayed with Cartesian axes. In Maple 12, polar axes are displayed by default, as seen here.

plots[polarplot](1+cos(theta), theta=0..2*Pi, axis[radial]=[tickmarks=5])

plots[polarplot](1+cos(theta), theta=0..2*Pi, axis[radial]=[tickmarks=5])

 A number of new options were added to the polarplot command so that you can customize the axes.  The most useful ones are the axis[radial] and axis[angular] options. These work like the axis[1], axis[2] and axis[3] options available for general plots, and you can use them to control color, tickmarks and other properties of the radial and angular axes.

Typeset math on plots had been introduced in Maple 11, and now we can take advantage of this with nice axis labels, in multiples of Pi, on the angular axis. These labels appear by default, but of course, they can be customized with the axis options. The plot/typesetting help page provides information on how to add typeset math to plots through the command line. There are also interactive ways to do this, using the context menu.

You can add polar axes to plots created by commands other than plots[polarplot], by using the axiscoordinates=polar option. However, not all the options offered by plots[polarplot] are available generally. Here is an example using plots[implicitplot].

plots[implicitplot]([x^2+2*y^2 = 1, x^2+1.5*y^2 = 1], color = ["Blue", "Green"], x = -1 .. 1, y = -1 .. 1, axiscoordinates = polar);

plots[implicitplot]([x^2+2*y^2 = 1, x^2+1.5*y^2 = 1], color = ["Blue", "Green"], x = -1 .. 1, y = -1 .. 1, axiscoordinates = polar)

It is also possible to get the pre-Maple 12 Cartesian axes back with polar plots, by adding the axiscoordinates=cartesian option.

How do I define a distribution with an arbitrary mass function so it can be used exactly like those predifined, e.g., Statistics:-Mean(Poisson(lambda), Statistics:-MGF(Poisson(lambda),t), etc? As an example, Rademacher distribution can be used, or its straighforward generalization with probability of +1 being equal to p and that of -1 equal to 1-p=q. Thanks.

hi all...i want to write a procedure just to execute a set of maple commands without any input args e.g do some calc and plot series of graphs..i am facing 2 problems

1.inside procedure all lines are not  displayd only last line of command inside the proc is diplayed after execution

2.im choosing a proc to exec a series of commands because i can use the debugger to debug the set of codes else i cannot.

I would like to change the way arrows looking Maple under fieldplot3d. Particularly I would like them to have a rounded head and a simple stick for the base of the arrow. Anyone know how to do this? I have seen it done before, just not sure how to implement the code to do it. Thanks in advance!

I'm using maple to optimize a certain problem. I have two matrices, A and B both of size m by n. Now I want to maximize alpha(a scalar) such that Bx>=alpha*Ax for arbitrary x. So I gave maple the following problem: input:=evalm(A&*X): > output:=evalm(B&*X): > for i from 1 to m do > constraint[i]:=output[i]-alpha*input[i]>=0; > od: > Constraints:=seq(constraint[i],i=1..m); > sumconstraint:=add(x[i],i=1..n)>=10; oplos:=NLPSolve(alpha,{Constraints,somconstraint},maximize=true,assume=nonnegative); My problem is that maple sometimes can't come up with an answer and tells me:

Given "(x + y/z)" as input, how do I get the same expression in the form of "(xz+ y)/z". I need to make this conversion, so that I can discard  the denominator and use the numerator "xz +y" as a monomial in Groebner Basis.

Does Maplesoft has an online version of Maple's user manuals? I know there are pdf versions. Thanks!

First 2031 2032 2033 2034 2035 2036 2037 Last Page 2033 of 2219