Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Can you expalin the difference between the gaugeindices, spinorindices,and spacetimeindices in the Physics package in Maple 16? 

Hi, I have created 2 annulus;

 

> display(sector([2, -5.5], 2.5 .. 3.5, (1/5)*Pi .. (1/2)*Pi, color = "Niagara Burgundy"), axes = none, scaling = constrained);
%;

> display(sector([5, -5], 1 .. 1.5, (1/5)*Pi .. 2*Pi, color = "Green"), axes = none);
 
But I want the green annulus to cross the Niagara Burgundy annulus at the points where the green annulus is open. The green annulus is open with an angle...

After a few steps and derived out a formula include a hypergeometric expression

hypergeom(....)

in this hypergeometric expression, there are more than two parameters in maple for example

hypergeom(X,Y,Z...)

from some paper said G(z*q; q^f)

i am not familiar with hypergeometric series

how to substitute z*q and q^f into a formula include a hypergeometric expression.

Hi, there, maple built-in help just has an example of Brusselator model in 1D case. But how can I intepreter the diffusion terms that Brusselator has in 2D case? Could you please give me an example of the code to run Brusselator simulation in 2D case?

Brusselator model:

http://hopf.chem.brandeis.edu/yanglingfa/pattern/bruss/index.html

 

Thank you

Kyle

Hi all. I am trying to use the Weyl character formula to evaluate some traces of Hecke operators on algebraic modular forms. This involves me having to substitute certain eigenvalues of 4x4 matrices into a polynomial of arbitrary degree (my choice).

I have created procedures that do this given the eigenvalues. Unfortunately I am having problems generating the eigenvalues.

The problem is that the matrices I am using are formed from products of matrices from two...

Hello every one,
I got an error while trying to solve numerically a nonlinear system of odes using 
the dsolve command. This error is very common,
"Error, (in dsolve/numeric/bvp) initial Newton iteration is not converging".
I tried the different technique explained in 
http://www.maplesoft.com/support/help/Maple/view...

This question was asked before but because of the curiosity, I 

bring it in the light again. We have a system of odes

restart:with(plots):

a := 1; b := .5; d := 1; omega := .4; h1 := 1+a*cos(x); h2 := -d-b*cos(x+omega);

F := Q-1-d;

de:={alpha*(diff(f(y), y, y, y, y))+G*(diff(theta(y), y, y))+B*(diff(phi(y), y, y))

+6*beta*(diff(f(y), y, y))*(diff(f(y), y, y, y))^2+3*beta*(diff(f(y), y, y, y, y))*

(diff(f(y), y, y))^2 = 0,

Find the definition Of the word juxtaposition in a dictionary and explain its meaning in the context of the tutorial?

Hello,

I want to build a paper model of an immersion of real projective plane made out of paper strips. I want to use maple to plot the curves which represent the paper strips. I have written a code shown below which computes the curve for one of the strips. In this code, alpha is set to Pi/2 and the computation goes through. However the computation should be performed for various alpha. But if I set alpha=0, then f (see code below) is not computable, if I set alpha=Pi/4,...

A user recently sent to me a Maplet that includes the display of an array of plots. This maplet works fine when run under the classic interface but not under the standard interface. As I tried to understand this problem I believe I have narrowed it down to a difference in the way the classic and standard interfaces handle an array of plots.

The attached worksheet is a very simplified example that shows the problem. What should happen is that pressing the "Plot single" button should show a single graph, pressing the "Plot array" button plots the empty axes, and pressing the "Plot displayed array" button displays a 2x2 array of plots. The second and third buttons illustrate the need for "plots:-display" in the action definition for this button.

Unfortunately, this works only in the classic interface. In the standard interface the "plot displayed array" button does not display anything. I should add that it appears to work correctly when exported as a .maplet file and run with the Maplet Viewer.

I have uploaded the worksheet: PlotArrayMapletDem.mw

I'm trying to compute the rank of large, non-quadratic matrices modulo p=2,3,5 and 7.

For matrix-sizes of (approx.) 20000 x 20000 everything works fine with Rank(p,M) of LinearAlgebra[Modular].

But for (approx.) 40000 x 40000 even the parsing of the matrix is not finished after 5 days (for 20k x 20k this takes 1 or 2 hours) . The system I use has enough ram, so no swaping is involved.

 

First question: I expected the parsing to be O(n^2), why is this not the case?

In matlab, a function is returned a structure H, say H.a, H.b, ...

In maple, I want to call this matlab function, but what returned to maple is a Record:

 

Hs:= getvar("H");

Hs:= Record(a=..., b=..., ...);

 

So how can I convert this record to a normal maple array? so I can access to each element by Hs[1]. 

 

Thank you

Kyle

Hi there, I'm trying to pass some calculation to Matlab then retrive the result by getvar(), but seems something is getting wrong.

my matlab function is very simple:

 

function out =maple_fun(a, b)

out = a + b;

return

 

this function is saved as maple_fun.m.

 

in Maple,

restart:
with(Matlab):
openlink():
DirectoryLocation := " cd  '/Users/Kyle/Documents/MATLAB/'  ":

Useing the following procedure I'd like to collect a set of  roots in a list of lists, so they can be manipulated and presented in various plot options. Some of which could be very interesting (to me only perhaps).

One option is to create a loop which produces values of newton roots x0 for a given function. For example:              f:=x->(x^7)-5

for x from -1 to 1 by 0.05 do

First 222 223 224 225 226 227 228 Last Page 224 of 2097