Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Can someone help me please?

 

What am i doing wrong?

 

> restart;
>
> g := .2189750324;


> m2 := 1;

> a := 1;

> c2 := -1;

> equation2 := y = m2*X+c2; 

> area1 := int(equation2, X = g .. a, numeric);

Error, (in int) invalid arguments

 

Can i make an algorithm like this in maple?

w= 4

for k= 1 to 10 do

             for h = 1 to 20 do

                      for a = 4 to 15 do

                               w1= a+hk

Objective: plot a graph from data drawn from two arrays. I would like to have the data points marked with a symbol (point, circle, or diamond, etc.) on the graph. How do I do that? Following is the code: -- two arrays of data point: engineeringStress and epsilon(engineering strain) -- Zip is used to put two arrays into data points (x,y) to create stressStrainData -- plot is used to graph The plot shows a line; I would like to have the data points marked (visibly seen) on the graph. Thanks. --mdc > restart; > with(plots); with(plottools);

Consider the following situation.  A thread acquires a mutex, then enters a critical section.  However when executing in the critical section, the thread access a memory location.  If that memory location is not in cache, the thread will wait for a few hundred cycles.  If accessing the memory location causes a page fault (the memory was swapped out to disk), the thread may need to wait a few million cycles.  However while this thread is waiting, it is still holding the mutex.  This means that other threads will not be able to enter the critical section, and may

Hallo,

I would like to create a literal subscript using a mac and international keyboard.

Unfortunately the symbol on the expression palette does not work so I need to use a keyboard shortcut. I have been searching the internet and maple help for hours, but I cannot find it. What I did find is:

http://www.maplesoft.com/support/help/AddOns/view.aspx?path=worksheet/documenting/2DMathShortcutKeys

A MaplePrimes member recently asked me how to sort two sets, using the permutation of one to sort the other.  For example, given the list

L1 := [3+I, I, 2, -1, 5, 4]:

sort it according to its magnitude and then permute the second list

L2 := [a, b, c, d, e, f]:

in the same manner.

Hi all,

Is there a way to call Eigenvectors(), order the returned eigenvalues from largest to smallest, and have the returned eigenvectors reflect this ordering? I've tried a sort() on the eigenvalues which orders them successfully, but I can't seem to figure out how to apply the ordering changes to my eigenvectors.

Hi all,

I am trying to substitute 2 solutions from each loop into a general matrix but i cannot do this.

 

File attached.

 

Thank you,View 11295_loop pra.mw on MapleNet or Download 11295_loop pra.mw
View file details

How do I calculate the derivative of C(r,t) with respect to r evaluated at r=a? I can do it in multiple lines like this:

temp:=diff(C(r,t),r);

r:=a;

R:=temp;

r:='r';

But this is a pretty ghetto way of doing this, how do I solve for R in one line? I thought diff or D could do it but I can't seem to get the syntax right :(

Thanks.

From the program below

 

 

Dear all,

 How How to plot curves family in one picture in Maple? For example

the curves family are y=a*x^2+5 
with a={4,8,12,16} 
and  x is in the region [-5, 5]

Thanks

Greetings all restart; f := x->x^4: assume(n::integer): an := 1/Pi*int(f(x)*cos(n*x),x=-Pi..Pi): FaN1 := sum(an*cos(n*x),n=1..N); FaN2 := Sum(an*cos(n*x),n=1..N); On Maple 13, FaN1 and FaN2 are very different representations of this series. However, on Maple 11 they are the same (same as FN2 on Maple 13). How can I persuade Maple 13 to convert FaN2 to FaN1 ? Also, how can I persuade Maple 11 to convert aFN1 to FaN2 ?
given this equation: f(x,y) = (xysin(x-y)) / (1+(x^2)+(y^2)) , for (1,1,0) i need to compute the partial derivatives and graph the surface and the tangent plane at the given point. this is as far as i got before getting stuck > f := xysin(x-y)/(1+x^2+y^2); xysin(x - y) ------------ 2 2 1 + x + y > plot3d(f, x = -3 .. 3, y = -3 .. 3, grid = [2, 2]);
First 1848 1849 1850 1851 1852 1853 1854 Last Page 1850 of 2223