Skip to content

Releases: gbaydin/FsAlg

v0.5.13

20 Jun 23:26
Compare
Choose a tag to compare
  • Changed: Matrix slices now return column or row matrices, instead of vectors

v0.5.12

14 Jun 14:51
Compare
Choose a tag to compare
  • Fixed: Check for invalid vector and matrix slicing bounds

v0.5.11

09 Jun 20:38
Compare
Choose a tag to compare
  • Added: New matrix operations appendRow, prependRow, appendCol, prependCol
  • Version 0.5.10 skipped due to incorrect naming of functions

v0.5.9

07 Jun 02:17
Compare
Choose a tag to compare
  • Added: New matrix operations row, col, ofRows, toRows, ofCols, toCols

v0.5.8

06 Jun 12:13
Compare
Choose a tag to compare
  • Changed: Moving back to F# version 3.1 (FSharp.Core version 4.3.1.0)

v0.5.7

05 May 13:39
Compare
Choose a tag to compare
  • Changed: FsAlg now uses F# version 4.0 (FSharp.Core version 4.4.0.0)
  • Changed: Matrix.ofSeq is now called Matrix.ofSeqSeq
  • Changed: Matrix.toArray is now called Matrix.toArrayArray
  • Added: New matrix operations ofVector, toVector, ofSeq, toSeq, ofArray, toArray
  • Changed: Vector.split is now called Vector.splitEqual
  • Added: New operations Vector.split for splitting vectors into subvectors of different sizes

v0.5.6

04 May 23:27
Compare
Choose a tag to compare
  • Added: New operation replaceWith

v0.5.5

03 May 19:31
Compare
Choose a tag to compare
  • Added: New operations replace2 and replacei2

v0.5.4

16 Apr 23:19
Compare
Choose a tag to compare
  • Added: Enumeration support for vectors and matrices
  • Added: Support for vector operations append, fill, forall2
  • Added: New operations replace and replacei, replacing elements of vectors and matrices by mutating them in place

v0.5.3

16 Apr 18:12
Compare
Choose a tag to compare
  • Added: Support for setting elements of vectors and matrices
  • Added: Vector operations exists2, fold2, foldBack2, iter2, iteri2, map2, mapi2, set, Matrix operation set
  • Fixed: Signatures of Vector.get, Vector.foldBack, and Matrix.get now match framework conventions
  • Improved: Documentation updates