fslaborg / FSharp.Stats

statistical testing, linear algebra, machine learning, fitting and signal processing in F#
https://fslab.org/FSharp.Stats/
Other
206 stars 54 forks source link

[BUG] Registering FSI Printer has no effect #130

Open kMutagene opened 3 years ago

kMutagene commented 3 years ago

Describe the bug

Registering fsi printer has no effect:

val it : FSharp.Stats.Matrix<float> = matrix [[0.1; 2.0]
                                              [0.1; 2.0]]

To Reproduce

#r "nuget: FSharp.Stats, 0.4.0"
open FSharp.Stats

fsi.AddPrinter(FSIPrinters.matrix)

matrix [[0.1;2.];[0.1;2.]]

Expected behavior

               0         1 
___________________________
0     |    0.100     2.000
1     |    0.100     2.000