Christopher2222

MaplePrimes Activity


These are Posts that have been published by Christopher2222

I find it very odd that this forum which is not very graphic intensive runs so slowly.  It runs like there's animated ads running in the background slowing things down, but this is a text forum with the odd graphic in the threads but hardly anything else.  I can't see why it can't work so much faster.

Why must one have high speed and the latest browser for this site to work marginally well?  Load times for the home page should load almost instantly, on...

Create a maplet or worksheet for the game Blokus. 

On that note, we should have a counter or tally in the post to show how many people want to work on or are attempting to work on the challenge.  That way people can see if there is progress happening behind the scenes.

Some images have reverted to some sort of equation form layout.  As an example look here http://www.mapleprimes.com/questions/87786-Smoothing-Data-Points-

What has happened?

I suppose this topic has come across many peoples minds at one time or another and I've only taken this number for granted and with a grain of salt.  I have become curious as to what other Maple users would run the memory usage up to? 

For myself I find on average usually running below 10Mb or so.  I suppose this is average, for me, but I haven't usually created large worksheets, I don't think I've ever let it run over 40Mb. ...

I had started to create a procedure for finding the centroid of a list of points.

Centroid := proc (list)
local a, centroid, x, y, i:
a := nops(list):
x := 0:
yi := 0:
for i from 1 to a do
x := x+list[i, 1]:
y := y+list[i, 2]:
end do:
print(`Centroid is at`,([xi, yi]/a)):
end proc:

But I thought there needs to be something simpler than that.  And here we are.

Centroid2 := proc (list)
local i:
print(`Centroid is at`, add(i, i = list...

First 24 25 26 27 28 29 30 Last Page 26 of 38