Skip to content

Releases: markrogoyski/math-php

v1.3.0

25 Aug 05:55
Compare
Choose a tag to compare

New Features

  • LinearAlgebra\Vector
    • Angle between two vectors
    • L¹ distance of two vectors
    • L² distance of two vectors
    • Minkowski distance of two vectors
  • Statistics\Distance
    • Minkowski distance
    • Euclidean distance (L² distance)
    • Manhattan distance (Taxicab geometry, L¹ distance, etc.)
    • Cosine distance
    • Cosine similarity

v1.2.0

25 Jul 05:47
Compare
Choose a tag to compare

New Features

  • Ranking
    • Ordinal ranking
    • Standard competition ranking
    • Modified competition ranking
    • Fractional ranking

Improvements

  • (Issue 380) Fixed Spearman's Rho calculation when there are rank ties

v1.1.0

20 Apr 00:23
Compare
Choose a tag to compare

New Features

  • Arithmetic modulo

Improvements

  • Improved matrix multiplication performance using cache-oblivious algorithm optimization

v1.0.0

14 Apr 06:45
Compare
Choose a tag to compare

Initial version 1.0.0 release!

v0.62.0

09 Apr 05:42
Compare
Choose a tag to compare
v0.62.0 Pre-release
Pre-release

Improvements

  • Internal improvements

v0.61.0

23 Mar 03:35
Compare
Choose a tag to compare
v0.61.0 Pre-release
Pre-release

New Features

  • Multivariate Hypergeometric distribution

V0.60.0

27 Feb 16:32
Compare
Choose a tag to compare
V0.60.0 Pre-release
Pre-release

New Features

  • Sample Data
    • MtCars
    • Iris
    • ToothGrowth
    • PlantGrowth
    • UsArrests

v0.59.0

19 Feb 15:00
Compare
Choose a tag to compare

New Features

  • Add population and sample kurtosis
  • Changed default kurtosis algorithm to the more common population kurtosis
  • kurtosis now takes an optional parameter to set the kurtosis type algorithm

v0.58.0

07 Feb 06:45
Compare
Choose a tag to compare
v0.58.0 Pre-release
Pre-release

Improvements

  • Changed default skewness algorithm to the more common sample skewness
  • skewness now takes an optional parameter to set the skewness type algorithm
  • Improvements to skewness algorithms

v0.57.0

08 Jan 02:52
Compare
Choose a tag to compare
v0.57.0 Pre-release
Pre-release

New Features

  • Number\Rational basic getters
    • getWholePart
    • getNumerator
    • getDenominator
  • Set Theory n-ary Cartesian product

Improvements

  • Data direction control for Matrix meanDeviation and covarianceMatrix
  • Algebra factors performance improvement