Re: [Factor-talk] Plotting in Factor

2019-11-04 Thread Alexander Ilin
"ui.gadgets.charts.demos" run 04.11.2019, 10:11, "Sanjay Jain via Factor-talk" : > I am new to Factor and am planning to use Factor scientific and engineering > data analysis. I have noted that Factor supports words for matrix algebra and > BLAS as well as bignum. Is there a facility to plot

Re: [Factor-talk] expm1 function missing

2019-11-04 Thread John Benediktsson
We can add that, it's probably roughly equal to this: GENERIC: e^-1 ( x -- y ) M: object e^-1 e^ 1 - ; inline M: float e^-1 dup 0.7 < [ dup e^ dup 1.0 = [ drop ] [ [ 1.0 - * ] [ log / ] bi ] if ] [ e^ 1.0 - ] if ; inline {

[Factor-talk] inverse of a matrix

2019-11-04 Thread Sanjay Jain via Factor-talk
Sorry about my queries regarding inverse and determinant of a matrix, I found them in math.matrices.elimination and math.matrices.laplace. Sanjay Jain ___ Factor-talk mailing list Factor-talk@lists.sourceforge.net