samygero

35 Reputation

4 Badges

13 years, 5 days

MaplePrimes Activity


These are questions asked by samygero

Hello,

 

I would like to know whether it is possible to change the color of animations that have already been produced and assigned to a variable.

 

Let's take for example

 

P := plots:-animate(plot, [sin(x+t), x = -Pi .. Pi], t = -Pi .. Pi, frames = 8)

 

is there a command to change the color of the curve AFTER it has been produced?

 

The calculus to generate all my plots took 4 hours so I would like not to have them calculated again.

 

Thx

Hello,

 

I don't seem to be able to create an array of plot with two rows, where the first one is a sigle animation and the second rwo is two animations in the same plot. For example I would the first row of the array to display

H := animate(plot3d, [x-k*y+1, x=-10..10, y=-10..10], k=-10..0, frames=4):

display([H]);

end the second row to display

P := animate(plot, [sin(x+t), x=-Pi..Pi], t=-Pi..Pi, frames=8):
Q := animate(plot, [cos(x+t), x=-Pi..Pi], t=-Pi..Pi, frames=8):


display([P, Q]);


Any ideas?

Hello,

I was wondering if I can call Matlab R2012b with maple 14 on my macos 10.7.5.

When I try to do this:

> Matlab[setvar]("x", 3.14);

I get this:


Error, (in Matlab:-setvar) there was a problem finding or loading matlink.so. Refer to ?Matlab,setup for help configuring your system to work with the Matlab-link.

I read that I may have to change a script. Where are those scripts located?

Regards,

Hello,

 

I would like to know if it is possible to redefine a function.

 

Let's say I have assigned one variable the following value:

e:=f(x,y,t) where f(x,y,t)

 

Later after some calculations I find that f(x,y,t) no longer depends on the parameter y so should be f(x,t).

 

Is it possible to pass the changes to "e" without having to actually rewrite the expression of "e"?

 

Hello,

 

This is more of a tutorial rather than a question because I found some mistakes and because the maple help file was a bit poorly explained and I am posting some additional details.

I am running version 16 of maple and version 7.12 R2011a of matlab.

 

If some of you are wondering how to call a Matlab user function in Maple this is what I have done:

 

First of all in the maple...

1 2 Page 1 of 2