MaplePrimes Questions

I know it is possible to change the "Look and Feel" of Java applications, and i was wondering if there was any way to do this on Maple? (Maple 13 for Linux, to be exact.) 

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);

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

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

 

 

Hi everyone!

I am part of a team managing a multi-user network at a mathematics institute in erlangen. 

We are working with Sun Solaris 5.10 and have got a problem plotting with plot3d(plot works fine though).

Any 3d plot results in a black screen. When I resize the plotting frame, the plot gets visible, but it immediately returns to a distorted black frame, when I release the mouse button. Updating the display on the rays doesn't help at all.

Have you any ideas how we can get Maple to plot  regularily?

Thank you and best wishes!

I have been using MapleNet for several years mainly on Linux.
But I usually use Mac for daily research and education.

I wonder why MapleNet is not compatible with Mac OS X.
MapleNet runs on Tomcat since ver. 11 and it should be run
on Mac OS X with Tomcat. However, there is no installer
for Mac !

I would love to ask Maplesoft to support Mac OS X for MapleNet.
webMathematica is fully compatible with Snow Leopard !
http://support.wolfram.com/technotes/snowleopard.en.html

Please...

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 2043 2044 2045 2046 2047 2048 2049 Last Page 2045 of 2434