Magalame

Results 12 issues of Magalame

Hi! I'm looking for a way to use `renderableToWindow` to manipulate the dimensions of a figure, then saving it as is to a file. Is there a way to do...

Hi! I was wondering if there were any specific plan to implement SIMD instructions. I've been playing around with them in the context of the `dense-linear-algebra` library, and they seem...

enhancement

Hi! I'm having some troubles using nested inplace jacobian: ``` using ForwardDiff using LinearAlgebra #some data x0 = randn(50000); p0 = randn(2); #pre allocate outputs out = similar(x0); outjac =...

The current problem is as follows: `(U.sum . flip M.column 0) a` does not fuse. It seems to boil down to: ```haskell testRewrite1 :: Matrix -> Double --fuses testRewrite1 (Matrix...

SIMD instructions seem to be of great importance in the performances of a linear algebra library. The big question then is how to incorporate them to the rest of the...

enhancement
help wanted
R&D: library

The `generateSym` function is defined as: ```haskell generateSym :: Int -> (Int -> Int -> Double) -> Matrix generateSym n f = runST $ do m do unsafeWrite m r...

Hi! I was wondering if there was a way to efficiently compute the rank of a sparse matrix with this crate? Thanks a lot :)

Hi! I'm setting up a benchmark of different linear algebra libraries, and I was wondering how to produce a large matrix? Libraries often have a `fromList` method or similar.