You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### A fresh approach to numerical linear algebra in Julia
7
7
@@ -10,7 +10,7 @@ The purpose of this package is partly to extend linear algebra functionality in
10
10
So far, this has mainly been my playground but you might find some of the functionality here useful. The package has a generic implementation of a singular value solver (vectors not handled yet) which will make it possible to compute `norm` and `cond` of matrices of `BigFloat`. The package extends the necessary method (`svdvals!`) in base. Hence
11
11
12
12
```jl
13
-
julia>usingLinearAlgebra
13
+
julia>usingGenericLinearAlgebra
14
14
15
15
julia> A =big(randn(10,10));
16
16
@@ -24,7 +24,7 @@ julia> norm(A)
24
24
The package also includes functions for the blocked Cholesky and QR factorization, the self-adjoint (symmetric) and the general eigenvalue problem. These routines can be accessed by fully qualifying the names
0 commit comments