MaplePrimes Questions

I use Maple in high school. My students deliver their homework created in Maple. Often this involves solving a number of exercises, say 7. Not all students are completely aware of how the Maple Engine works, so I tell them to put in restarts from time to time, at least when a new exercise begins. This prevents misunderstandings and loss of time which might else happen when calculations in one exercise interferes with calculations in the next exercise. One simple example...

This guy Giorges is using Python and wget inorder to do parrallel downloading
and he is arguing that it is very fast.

http://keramida.wordpress.com/2010/01/19/parallel-downloads-with-python-and-gnu-wget/


Now my questions become

1) Does there exist a simple way that I can use wget without installing it ?
I dont want to bother users of my Maple application with installing a 3:rd party software.
A simple file in a specific location would be ok though

How can I display 2 followed by 1 single animation?

ie

a:=animate(...)
b:=animate(...)
c:=animate(...)

I can animate all 3 in sequence with display((a,b,c),insequence=true)  or I can animate them all at once.  But how can I animate two at once followed by the 3rd animation?

I tried

h:=display(a,b)
g:=display(c)

gg:=dispaly((h,g),insequence=true)    Which I thought might have worked however that produces multiple frames.

Whilst I am glad that Maple have finally fixed their pdf and eps plot output with version 13 (corrupted on the Mac since version 10), I would like to re-ask the question asked by peterschmid 4 in 2006: how can I control the output size of the plot?  The plotsetup options axiswidth, axisheight, width, height, appear to have no effect.

Please note that I use Maple for academic publishing, and I wish to automatically generate graphs and export them as eps files....

I want to plot this graph with maple. http://img843.imageshack.us/img843/5300/graphh.jpg The lines are: a) x=2t+3; y=5t-2; z=-t+1 b) x=-2t+7; y=t+8; z=2t-1. I tried to plot the first line with spacecurve, but I don't now how to plot the two lines together.Also I couldn't plot the z axes in the vertical position. spacecurve([2*t+3,5*t-2,-t+1],t=-10..10,axes=normal, labels=[x,y,z],scaling=constrained); Is there a way to find and represent on the intersecting...

Can the seq here be made into an equivalent for command?

x:=[6,2,8,4]
y:=[7,5,1,3]
stepsize:=0.5
step:=seq(min(x)..max(x),stepsize)

b:=[seq([new,min(y)],new=step)]
pointplot(b,symbol=circle,color=blue)

This is code I've converted from Matlab.  Now I'm attempting to convert the seq here into a similar but simple for loop without using seq.  There is a similar code line in Matlab using a for loop but I have no experience with...

I am gettinga string from a textfield

In my program that String represent a set of 8 bits

ie. g(t)= 10101110

But I need to separate them like

n0=1

n1=0

n2=1

...

n7=0

 

where each n is an integer

how do I do it?

 

 

 

I guys,

I wrote this little function :

 

test:=proc(a,x) 
if has(a,x) then 
    if type(a,`*`) then
        S,R:=selectremove(has,a,x);
    else        R:=1; S:=a;
    end if;
else
R:=a; S:=1;
end if;
return [S,R];
end proc;

could you confirm that it should catch every possible form for a monomial containing or not x?

Hi all

I'm fighting agaist this situation:

ccc:= sin(x);

S:= select(has,ccc,x)
     sin(x)
R:=remove(has,ccc,x);                                  
     sin()

 

what's that??? why doesn't it aswer 1 or " " istead?

How am I supposed to trust in the remove procedure? What should I do in order to...

UncertaityofCalibrat.mw

within the attached document, is the idea that I would like to develop with the optimization package.

I want to calculate iterates for the Logistic map using the maple's symbolic computation. e.g., 

x1=a*x*(1-x):

a1=a+w:

x=x1:

a=a1:

 

In order to keep track of the error that builds up in each step.  But the main trouble is that it takes very long time to calculate the same even for 100 iterates. What could be the possible method to make my program efficient ? 

Please do not answer in terms of using high precision technique as I am more interested in doing it symbolically.

 

Is there a way to solve an equation to show all integer solutions, assuming the problem has finite solutions. Examples would include elliptic curves.


I have the following list, vector or set, I put it in a matrix

 

 

Hello,

Does any body know why the following code

A:=Matrix(3, 3, [[-1/23*(14+21*62^(1/2))^(1/3)-31/29/(14+21*62^(1/2))^(1/3)-13/107,0,0],[0,1/22*(14+21*62^(1/2))^(1/3)+15/29/(14+21*62^(1/2))^(1/3)-13/10-1/2*I*3^(1/2)*(-1/11*(14+21*62^(1/2))^(1/3)+31/29/(14+21*62^(1/2))^(1/3)),0],[0,0,1/22*(14+21*62^(1/2))^(1/3)+15/29/(14+21*62^(1/2))^(1/3)-13/10+1/2*I*3^(1/2)*(-1/11*(14+21*62^(1/2))^(1/3)+31/29/(14+21*62^(1/2))^(1/3))]]) ;

with(LinearAlgebra):
IsSimilar(AA,AA);

Hi,

I'm trying to use a simple DLL in maple, which I create based on Maple external linking examples..

int __stdcall mult( int a, int b )
    {
         return a * b;
    }

and I compiled it with Visual Studio 2010 compiler, but when I use it in Maple I recieve the error

"Error, external linking: error loading external library"

thanks

First 1960 1961 1962 1963 1964 1965 1966 Last Page 1962 of 2431