Question: Multi-Threading Loops

 

Can anyone give me a good example of MultiThreading in Maple  with(Threads):

I looked in the help files but I could not find anything good. The example should include a loop

which is running in the background while the user is doing other things simultaneously in Maple.

 

The loops could be using a time delay to slow it down

st := time[real](); while time[real]()-st < 5 do  end do ;

The output from each iteration should be displayed in a math container so we can see that it is working.

Please Wait...