-
Building Julia 0.3.6 from the latest release tarball with `USE_SYSTEM_BLAS=1` and `USE_SYSTEM_LAPACK=1` (among others) the test do not pass:
```
JULIA test/all
From worker 3: * linalg2
…
-
```
This is more of a placeholder. In theory it should be possible to use CUDA
(Nvidia's API for using a GPU for vector ops) to speed up several aspects of
processing here, since a lot is matrix ope…
-
```
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "help()" for help.
| | | | | |…
-
Current `Index` implementation is missing the feature to allow the user to pick individual items from a Matrix and create a SubMatrix as a result. See the following example:
```
// 4x4 Matrix
A = [1,…
-
Currently, `lu`, `chol`, `(\)`, etc. convert an `Array{Rational{Int64},2}` to `Array{Float64,2}` before doing any computation. These should actually compute the decompositions using rational arithmeti…
-
I'm fiddling with sparse matrices and have found a few quirks :-)
What I pretend to do is use LU factorization in sparse matrices (for now in real matrices, but I hope to get it done also in sparse…
jasax updated
9 years ago
-
I have been writing some code involving determinants of matrices with Integer eltype, where in the context of my application it is natural to expect that the determinants will also be integral. Howeve…
-
```
This is more of a placeholder. In theory it should be possible to use CUDA
(Nvidia's API for using a GPU for vector ops) to speed up several aspects of
processing here, since a lot is matrix ope…
-
We need a polyalgorithm for sparse .
This is the discussion from the mailing list.
https://groups.google.com/forum/?fromgroups#!topic/julia-users/FagaqWVkBGU
We may need enhancements to the dense \ …
-
Partial list of methods/implementations:
[GMRES](http://www.inside-r.org/packages/cran/pracma/docs/gmres) in [pracma](http://cran.r-project.org/web/packages/pracma/index.html) -- Arnoldi iteration to…