pHatfield

25 Reputation

2 Badges

19 years, 314 days

MaplePrimes Activity


These are questions asked by pHatfield

I have an animation in Maple that I wanted to email a friend without Maple.  Is it possible to export Maple Animations as a video file??

I have a pointplot3d that is running in an infinite loop and I was wondering if there was any way to at the end of my loop show the graph, pause Maple for .1 seconds and delete the graph. Such as in the example:

n:=1;
keepGoing:=1;
 

while keepGoing=1 do
  plot(x^n, x=-5..5);
od;

is there any way I could get Maple to show the graph for .1 seconds then delete the current graph and show the next graph?

 

pHatfield

Hey,

I am trying to animate this code, I have a loop that makes a matrix of random numbers
 

with(RandomTools):for i from 1 to 20 do
>   for j from 1 to 2 do
>   p[i, j] := i+Generate(float, 0..1);
>   od;
> od;   
 

and if I try to plot the following this works such as

points:= {seq([p[T,1], p[T, 2], T],T=1..20)};
pointplot3d(points, symbol=box);

This gives me all 20 points on the plot

Page 1 of 1