[Axiom-developer] [statistical functions]

2005-06-13 Thread anonymous
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- ??changed: -++ This package exports statistics utilities ++ This package exports statistic utilities ??changed: - ++ median(a) median of a collection ++ median(a) median of a collec

[Axiom-developer] [statistical functions]

2005-06-13 Thread kratt6
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- ??changed: -I just started to hack together a couple of statistical functions. Should be extended of course. The median could be implemented in 'O(n)' steps, but I don't have the time. - -\begin{axiom} -)abb pa

[Axiom-developer] [statistical functions] library code must begin with )abbrev

2005-06-11 Thread Bill Page
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- Martin, Your original statistics code above did not compile here on MathAction because MathAction requires that Axiom library code must beging with exactly:: )abbrev ... Typing ')abb' is not enough even thoug

[Axiom-developer] [statistical functions] Thank you!

2005-06-11 Thread kratt6
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- whoever you are, this is great! I would like to know your name, though... I suspect there are more treasures to be found! Martin -- forwarded from http://page.axiom-developer.org/zope/mathaction/[EMAIL PROTECTED

[Axiom-developer] [statistical functions] Old hacks

2005-06-11 Thread anonymous
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- ++added: ++added: ??changed: -a:= ["a","c","d","g","z"] a:= ["a","c","d","g","z","a","d","g","f"] ++added: center b -- forwarded from http://page.axiom-developer.org/zope/mathaction/[EMAIL PROTECTED]

[Axiom-developer] [statistical functions] Old hacks

2005-06-11 Thread unknown
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- Here is some old hack. \begin{axiom} )abbrev package STAT StatPackage ++ Description: ++ This package exports statistics utilities StatPackage(S,A) : Exports == Implementation where S: SetCategory A: Collecti

[Axiom-developer] [statistical functions] Old hacks

2005-06-11 Thread anonymous
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- ??changed: -Here is some old hack. Here are some old hack. ++added: ++added: And \begin{axiom} a:= ["a","c","d","g","z"] b:= [1,7,8,9,2,4,6,17,18,14,32] median a median b mean b hmean b moment(b,1) moment(b,2

[Axiom-developer] [statistical functions] (nouveau)

2005-06-11 Thread kratt6
Changes http://page.axiom-developer.org/zope/mathaction/StatisticalFunctions/diff -- I just started to hack together a couple of statistical functions. Should be extended of course. The median could be implemented in 'O(n)' steps, but I don't have the time. \begin{axiom} )abb package STAT Stati